IOS8系统下,APP开发的不同,及碰到的问题收集

来源:互联网 发布:日本文学 知乎 编辑:程序博客网 时间:2024/06/05 05:31

如题:IOS8正式版发布后,原来的项目很多,都出现了各种各样的问题。

正如苹果官方所说,IOS8,对于开发者来说会有很大的变化

这里做个收集,目前只碰到几个。记录一下:

1.UITableviewCell

内存不断增加。找了很久原因。后来一步一步的寻下去,发现是以下问题

- (void)layoutSubviews 

之前,因为IOS7设置了accessoryView后,contentView回被向前移动。为了让contentView位置不变,所以在该方法中,使用了

[super layoutSubviews];    // IOS8 开始,会引起循环。所以只在IOS8以前执行if (need) {            CGRect frmContentview = self.contentView.frame;            frmContentview.size.width = CGRectGetWidth(self.bounds);            self.contentView.frame = frmContentview;        }
所以很多使用这个的地方都会引起无限循环。因为改变了contentView的frame就会不断引起layoutSubviews方法。

解决方法:使用了self.contentView.superView。并且在

- (void)setSelected:(BOOL)selected animated:(BOOL)animated{    [super setSelected:selected animated:animated];    [self.contentView.superView setBackgroundColor:self.contentView.backgroundColor];    // Configure the view for the selected state}- (void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated{    [super setHighlighted:highlighted animated:animated];    [self.contentView.superView setBackgroundColor:self.contentView.backgroundColor];}

这样颜色就比较统一了。其他的正常使用就可以了。

2.NSUserDefaults

这个东西真的很蛋疼。clean下项目,删除模拟器APP。重新运行后,

发现取到的BOOL值或都其他,基本都跟未删除时一样。经过google,最终找到IOS8的模拟器,如果删除了app,貌似NSUserDefaults是不会重置的。

所以,只有重新reset下模拟器。重试后发现,还真的是这么回事。真机还没有测试。

3.键盘。

不管是textField还是textView都可以看到光标在跳动。但是键盘就是不出来。

纠结了了1个多小时,找各种原因,google了很久。最后,在第2点重置后发现,恢复正常。瞬间无语

4.UIAlertView

UIAlertView如果设置title为nil。会发现字体变黑,设为@""就可以了

5.重名问题

新建了一个类继承自NSObject。并且声明了一个delegate的protocol。

结果,在使用的时候发现指向了NSFileManagerDelegate。

这个是因为在IOS8的SDK中,NSObject类存在一个delegate的声明。重名就改名,解决

6.UIScrollview

很多人在IOS6升级IOS7的时候应该碰到过UIScrollview不能滑动的问题。网上的方法都是这样的

在viewWillAppear 或者 viewDidAppear 中加入,

[self.tableview setContentOffset:CGPointMake(0, CGFLOAT_MAX) animated:YES];

但是在IOS8里面,发现这种话,也会引起界面卡死

所以大家可以使用以下方法解决

if (self.tableview.contentSize.height > self.tableview.bounds.size.height) {            [self.tableview setContentOffset:CGPointMake(0, self.tableview.contentSize.height) animated:YES];        }

7.BadgeNumber

更新APP徽标的时候,在IOS8中需要授权,否则可能出错。或提示

Attempting to badge the application icon but haven't received permission from the user to badge the application

#ifdef SUPPORT_IOS8    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0) {        UIUserNotificationType myTypes = UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound;        UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:myTypes categories:nil];        [[UIApplication sharedApplication] registerUserNotificationSettings:settings];    }else#endif    {        UIRemoteNotificationType myTypes = UIRemoteNotificationTypeBadge|UIRemoteNotificationTypeAlert|UIRemoteNotificationTypeSound;        [[UIApplication sharedApplication] registerForRemoteNotificationTypes:myTypes];    }

#define SUPPORT—IOS8  1

__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000

============================================其他碰到慢慢补充================================================


这里有一个说IOS8变化的贴子,大家可以看一下:

http://www.cocoachina.com/bbs/read.php?tid-217107.html



2 0
原创粉丝点击