iOS开发者关于iOS13的适配

1.KVC访问私有属性的崩溃问题

在Xcode11上使用- (void)setValue:(nullable id)value forKeyPath:(NSString *)keyPath方法访问私有属性,编译时会崩溃,例如:

[textField setValue:[UIColorredColor]forKeyPath:@"_placeholderLabel.textColor"];///崩溃[textField setValue:[UIFontsystemFontOfSize:14]forKeyPath:@"_placeholderLabel.font"];


2.即将废弃的LaunchImage

随着苹果设备的型号日益增多,利用LaunchImage来设置启动图显然显得不够明智。

替代方式:使用LaunchScreen来设置启动图。LaunchScreen是iOS8引入的,支持AutoLayout+SizeClass,所以用起来十分方便。据消息,明年4月份后,所有app必须提供LaunchScreen了,尽早替换吧。

3.presentViewController的问题

iOS 13 的 presentViewController 默认有视差效果,模态出来的界面现在默认都下滑返回。 一些页面必须要点确认才能消失的,需要适配。如果项目中页面高度全部是屏幕尺寸,那么多出来的导航高度会出现问题。所以手动设置一下Style吧

let mainViewController=UIView()// 即需要被present的viewmainViewController.modalPresentationStyle=.fullScreenself.present(mainViewController,animated:true,completion:nil)

注意必须是在跳传的时候设置才有用,个人体验了一把。

4.增加蓝牙权限申请

iOS13以前,使用蓝牙时可以直接用,不会出现权限提示,iOS13后,再使用就会提示了。 在info.plist里增加

NSBluetoothAlwaysUsageDescription我们需要使用您的蓝牙`

5.MPMoviePlayerController 彻底弃用

MPMoviePlayerController 在 iOS 9 开始被弃用,如果在 iOS 13 中继续使用的话会直接抛出异常:***Terminating app due to uncaught exception'NSInvalidArgumentException',reason:'MPMoviePlayerController is no longer available. Use AVPlayerViewController in AVKit.'

6.UISearchDisplayController彻底弃用

在 iOS 8 之前,我们在 UITableView 上添加搜索框需要使用 UISearchBar + UISearchDisplayController 的组合方式。

在 iOS 8 之后,苹果就已经推出了 UISearchController 来代替这个组合方式。在 iOS 13 中,如果还继续使用 UISearchDisplayController会直接导致崩溃,崩溃信息如下

Terminating app due to uncaught exception'NSGenericException',reason:'UISearchDisplayController is no longer supported when linking against this version of iOS. Please migrate your application to UISearchController.'

解决方法:使用UISearchController代替

8.APP 底部有自定义tabbar,弹出页面后关闭,底部的tabbar文字颜色变为蓝色了,

解决办法:在自定义标签栏那里判断一下,

if #available(iOS 13.0, *){

self.tabBar.unselectedItemTintColor = UIColor.init(hex: "a1a1a1")

self.tabBar.tintColor = UIColor.init(hex: "30b0b5")

} else{

item.setTitleTextAttributes([NSAttributedString.Key.foregroundColor: UIColor.init(hex: "a1a1a1")], for: .normal)

item.setTitleTextAttributes([NSAttributedString.Key.foregroundColor: UIColor.init(hex: "30b0b5")], for: .selected)

}

你可能感兴趣的:(iOS开发者关于iOS13的适配)