1.启动app存在的一些问题
在APP启动时,若存在一些耗时操作,则会出现闪一下黑屏。可以检查:1.launchImage是否正确 2.读写plist文件会很耗时
-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{}
使用widget启动app时,launchOptions会存在数据,对于保存系统推送的key:kSystemNotificationUserDefalutsKey 会导致app启动奔溃,此时需要将launchOptions = nil;iOS 程序启动时总会调用application:didFinishLaunchingWithOptions:,其中第二个参数launchOptions为NSDictionary类型的对象,里面存储有此程序启动的原因。launchOptions中的可能键值见UIApplication Class Reference的Launch Options Keys节 。
2.1、若用户直接启动,lauchOptions内无数据;
2.2、若由其他应用程序通过openURL:启动,则UIApplicationLaunchOptionsURLKey对应的对象为启动URL(NSURL),UIApplicationLaunchOptionsSourceApplicationKey对应启动的源应用程序的bundle ID (NSString);
2.3、若由本地通知启动,则UIApplicationLaunchOptionsLocalNotificationKey对应的是为启动应用程序的的本地通知对象(UILocalNotification);
2.4、若由远程通知启动,则UIApplicationLaunchOptionsRemoteNotificationKey对应的是启动应用程序的的远程通知信息userInfo(NSDictionary);
2.5、其他key有UIApplicationLaunchOptionsAnnotationKey,UIApplicationLaunchOptionsLocationKey, UIApplicationLaunchOptionsNewsstandDownloadsKey。
2.tableView嵌套问题
- 当cell中嵌套tableView时,若cell frame 小于子tableView的frmae,则会造成tableView点击区域无法响应
- 多个多种view嵌套时,会遇到手势冲突问题,这时需要重写手势代理:UIGestureRecognizerDelegate 来识别需要响应手势的view
- (Bool)GestureRecognizer:(UIGestureRecognizer *)gestureRecoginzer shouldReceiveTouch:(UITouch *)touch {
if([touch.view isKindOfClass:[UILabel class]] ){
return YES;
} else {
return NO;
}
}
3.适配iOS 11遇到的问题及解决办法
- UIScrollView及其子类(UITableView)的适配
iOS 11之前,在VC里设置:
automaticallyAdjustsScrollViewInsets = YES;
scrollView会自动设置相应的内边距,存在tableHeaderView时是不会和导航栏存在适配问题。
iOS 11 之后,系统默认开启self-sizing,TableHeaderView的背景图下移20像素到导航栏下方,apple文档解析:
Self-Sizing by Default
NEW
Link on iOS 11, all estimated heights default to UITableViewAutomaticDimension Headers, footers, and cells use self-sizing by default
iOS only—behavior is not changed on tvOS
Ensure all views have sufficient internal constraints
Return fixed sizes from delegate methods
此时需要设置:
tableView.estimatedRowHeight = 0;
tableView.estimatedSectionHeaderHeight = 0 ;
tableView.estimatedSectionFooterHeight = 0;
if (systemVersion >= 11) {
self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
} else {
self.automaticallyAdjustsScrollViewInsets = NO;
}
4.获取相册权限
- iOS11下,苹果对相册的权限key做了调整,原来的 NSPhotoLibraryUsageDescription ,在iOS11之后,改成了NSPhotoLibraryAddUsageDescription
<key>NSPhotoLibraryAddUsageDescription</key> //iOS 11
<string>App需要您的同意,才能访问相册</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>App需要您的同意,才能访问相册</string> //<iOS10
5.导航栏
iOS11对导航栏做了比较大的更改:
- 表现一,以前使用如下方法设置导航栏UIBarButtonItem。到了iOS11上。UIBarButtonItem会被Tint Color渲染,原颜色被冲掉。
解决方法 : 设置UIImage的渲染模式——UIImage.renderingMode为 UIImageRenderingModeAlwaysOriginal——始终绘制图片原始状态,不使用Tint Color。
//设置导航栏返回按钮,iOS11上颜色会被冲掉
- (void)setNavigationBarBackButtonItem:(NSString *)image {
UIImage *backImage = [UIImage imageNamed:image];
UIBarButtonItem *backItem = [[UIBarButtonItem alloc] initWithImage:backImage style:UIBarButtonItemStylePlain target:self action:@selector(popViewControllerAnimated)];
backItem.tintColor = [UIColor colorWithPatternImage:backImage];
backItem.title = @"";
self.navigationItem.leftBarButtonItem = backItem;
}
用 initWithCustomView的方法,不会受上面影响。
_leftBtn = [[UIButton alloc] ];
[_leftBtn setImage:image forState:UIControlStateNormal];
_leftBtn.backgroundColor = [UIColor cyanColor];
_leftBtn.imageView.contentMode = UIViewContentModeScaleAspectFit;
_leftBtn.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
[_leftBtn addTarget:self action:@selector(leftBtnClicked) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:_leftBtn];
self.navigationItem.leftBarButtonItem = leftBarButtonItem;
- 表现二,iOS11上initWithCustomView的方法给导航栏设置按钮,如果图片未加@3x后缀,图片会显示超大,超出了原始尺寸。解决方法就是给图片加上@3x。
6、iOS 10无法连接网络问题
有些时候在iOS10系统下,App无论如何都无法连接互联网,这时候是因为我们的App没有向用户发出是否允许网络请求,我们可以按照以下操作让App弹出是否允许网络请求:
设置-无线局域网或蜂窝移动网络-使用无线局域网与蜂窝移动的移动
更改任意App的权限再恢复原先选项,操作完成后再打开相关问题应用,会弹出选择网络,确认即可
7、某些iOS设备在设置日历提醒时,添加失败
测试的同事开始给我反馈是iOS10.3.2的问题,后来经过反复排查,确认不是代码问题,是设备本身设置提醒需要在icloud开启(或曾经开启过)
[图片上传中...(开启日历提醒)]
It works now!