今天分享一下近期对iOS13适配的问题,如有不对的地方请大家在下面留言。
1、如何关闭程序中的暗黑模式?
iOS13最大的特点是带来了暗黑模式,这个很不错的,我的Mac OS也改了暗黑模式,但是如果不适配的话,可能会出现该是黑色的地方用了白色了,该是白色的地方是黑色了,看不到了,怎么关掉呢
#if defined(__IPHONE_13_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_13_0
if(@available(iOS 13.0,*)){
self.window.overrideUserInterfaceStyle = UIUserInterfaceStyleLight;
}
#endif
适配后,就和之前一样了
2、PresentViewController的区别,
iOS13后,Prensent方式弹出页面时,默认的模式变为了UIModalPresentationAutomatic
,这样的方式也挺好的,动画也好看,自带关闭,只要下拉就关闭页面了,这样的动画方式下,之前会出现的《UITabBar在iPhoneX等Push时显示错乱问题》 的问题也不存在了。
但有的时间,我们不希望这个样式,比如需要用户不能关闭的,
如何回到原来的样式呢,挺简单的
只要指定弹出页的 modalPresentationStyle 属性,注意是要Present的页面
UIViewController *vc = [[UIViewController alloc] init];
vc.modalPresentationStyle = UIModalPresentationFullScreen;
[self.navigationController presentViewController:vc animated:YES completion:nil];
3、增加一直使用蓝牙的权限申请
这个我没有弄明白,究竟是哪里需要用到蓝牙了,而且还是需要一直申请的,不然就出错了,没办法只能在 app的 info.plist里增加
<key>NSBluetoothAlwaysUsageDescription</key>
<string>**需要使用您的蓝牙,用于*******(具体做什么看App内的使用场景)</string>
2019年8月5日 补充:这个后来发现了,是CBCentralManager
这个搞的怪,iOS13以前,使用蓝牙时可以直接用,不会出现权限提示,iOS13后,再使用就会提示了。
4、使用MJExtension 中处理NSNull的不同
这个直接会导致Crash的
在将服务端数据字典转换为模型时,如果遇到服务端给的数据为NSNull时,
mj_JSONObject
,其中 class_copyPropertyList
方法得到的属性里,多了一种EFSQLBinding
类型的东西,而且属性数量也不准确,
那就没办法了,
我只能改写这个方法了,这个组件没有更新的情况下,写了一个方法swizzling掉把当遇到 NSNull时,直接转为nil了。
5、fishhook 导致的Crash
如果你的APP里用到了fishhook 可能在iOS13中会crash
参见:https://github.com/facebook/fishhook/issues/61
解决方案,这样改一下先,
// indirect_symbol_bindings[i] = cur->rebindings[j].replacement;
if (i < ( sizeof(indirect_symbol_bindings) / sizeof(indirect_symbol_bindings[0]))) {
indirect_symbol_bindings[i] = cur->rebindings[j].replacement;
}
6 WKWebView 中测量页面内容高度的方式变更
iOS 13以前
document.body.scrollHeight
iOS 13中
document.documentElement.scrollHeight
两者相差55 应该是浏览器定义高度变了
7、StatusBar 与之前版本不同
这个解决方案还在调查中
statusBar/statusBarWindow都不能直接使用
8 、UITextField 的rightView、leftView 如果是UIImageView 或者 UILabel时,会被sizeToFit(具体是不是执行了这个操作不知道)表现就是变小了
这时需要把原来的UIImageView 放到一个指定大小的UIView上,就OK了
UIView * tempView = [[UIView alloc] initWithFrame: imageView.bounds];
[tempView addSubview:imageView];
textField.rightView = tempView;
9 UITabBar 自定义颜色的方式不同
以前如果自定义了一个 UITabBar,只要在setItems时指定颜色
现在iOS13后,新增了 UITabBarAppearance
类型
UITabBarAppearance * appearance = [[UITabBarAppearance alloc] init];
// 设置文字属性
NSMutableDictionary * attrs = [NSMutableDictionary dictionary];
attrs[NSFontAttributeName] = [UIFont systemFontOfSize:10.0];
// 设置文字的前景色
attrs[NSForegroundColorAttributeName] = RGBACOLORFromRGBHex(0x949494);
NSMutableDictionary * attrs2 = [NSMutableDictionary dictionary];
attrs2[NSFontAttributeName] = [UIFont systemFontOfSize:10.0];
// 设置文字的前景色
attrs2[NSForegroundColorAttributeName] = RGBACOLORFromRGBHex(0xff5200);
appearance.stackedLayoutAppearance.normal.titleTextAttributes = attrs;
appearance.stackedLayoutAppearance.selected.titleTextAttributes = attrs2;
self.standardAppearance = appearance;
10 私有KVC
iOS不允许valueForKey、setValue: forKey获取和设置私有属性,需要使用其它方式修改
如:
[textField setValue:[UIColor red] forKeyPath:@"_placeholderLabel.textColor"];
//替换为
textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"输入"attributes:@{NSForegroundColorAttributeName: [UIColor red]}];
11 UISearchBar显示问题
升级到iOS13,UISearchController上的SearchBar显示异常,查看后发现对应的高度只有1px,目前没找到具体导致的原因,解决办法是使用KVO监听frame值变化后设置去应该显示的高度
黑线处理crash
之前为了处理搜索框的黑线问题会遍历后删除UISearchBarBackground,在iOS13会导致UI渲染失败crash;解决办法是设置UISearchBarBackground的layer.contents为nil
public func clearBlackLine() {
for view in self.subviews.last!.subviews {
if view.isKind(of: NSClassFromString("UISearchBarBackground")!) {
view.backgroundColor = UIColor.white
view.layer.contents = nil
break
}
}
}
12 TabBar红点偏移
如果之前有通过TabBar上图片位置来设置红点位置,在iOS13上会发现显示位置都在最左边去了。遍历UITabBarButton的subViews发现只有在TabBar选中状态下才能取到UITabBarSwappableImageView,解决办法是修改为通过UITabBarButton的位置来设置红点的frame
13 第三方登录
苹果更新的审核规范中提到使用第三方登录的APP必须要将apple登录作为一个可选择项
Sign In with Apple will be available for beta testing this summer. It will be required as an option for users in apps that support third-party sign-in when it is commercially available later this year.
14 UIImagePickerController 点击拍照崩溃
原因是:在present UIImagePickerController 的时候present UIAlertController的一个Controller。这个bug在iOS13以下的系统当中没有问题,应该是苹果做了一些处理,在新的系统中崩溃可能会在后期更新系统的时候把这个问题修复掉。
解决方法:
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
picker.allowsEditing = YES;
[self presentViewController:picker animated:YES completion:nil];
});
网友评论