iOS 13.2 调试包 (不定时更新)

链接:https://pan.baidu.com/s/1G-bTUOviRnPHikU0m_7j2w 密码:uqp8

真机调试包所在位置
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport

ps: 12.1 的调试包可用于 12.1.0 12.1.1 12.1.2 等 任何12.1 的子版本 的iPhone 真机调试
调试包 放入后需要重启Xcode

适配 iOS 13 主要有4点:

1:
viewController : modalPresentationStyle 在iOS13上修改了modalPresentationStyle的默认值,
如果 app在iOS 13上出现页面跳转出现各种奇怪的UI和交互问题可以尝试 将viewController modalPresentationStyle 改回以前的默认值,(推荐在基类中修改)
self.modalPresentationStyle = UIModalPresentationFullScreen;

2:
MPMoviePlayerController 在iOS 13 弃用,
推荐转用AVKit ,AVKit 的 功能很强大而且简单

3:
iOS 13 蓝牙权限 新增 NSBluetoothAlwaysUsageDescription

4:
UIWebView 需要尽快转到WKWebView,在2020年中旬左右完全废弃

其实还有dark model 的适配,但是这个我没有做,公司有精力和需求的

你可能感兴趣的:(iOS 13.2 调试包 (不定时更新))