1.UISearchController
上的SearchBar
显示异常,高度变为只有1px。
解决方法:解决办法是使用KVO监听frame值变化后设置去应该显示的高度。
2.iOS13禁止使用valueForKey
、setValue: forKey的方式获取和设置私有属性,会引起crash。
解决方法:使用其他方法替换。
3.
TabBar上设置的红点会偏移到左上方。遍历UITabBarButton
的subViews
发现只有在TabBar
选中状态下才能取到UITabBarSwappableImageView
解决方法:在选中状态下对tabbar 设置 [tabBar layoutIfNeeded];
4.控制器的 modalPresentationStyle 默认值变了 变为UIModalPresentationFullScreen;
解决方法:接受这种交互方式就不用做改动,如果想回复到之前的交互方式请直接设置:self.modalPresentationStyle = UIModalPresentationOverFullScreen;(注意:图片编辑器的类别可能需要设置一下self.modalPresentationStyle =UIModalPresentationFullScreen,否则有不能编辑图片的bug!!!)
5.MPMoviePlayerController在iOS13中不能使用
解决方法:寻找可替带的sdk控件。
6.iOS13讲通过LaunchScreen来取代LaunchImage来设置启动图。
7.iOS13新增暗黑模式,没有适配暗黑模式前,请先禁用:在info.plist文件中UIUserInterfaceStyle设置为light。