美文网首页适配
iOS 16.0 适配记录

iOS 16.0 适配记录

作者: 独立开发者Lau | 来源:发表于2022-09-16 10:31 被阅读0次

1、屏幕旋转
问题:
[Orientation] BUG IN CLIENT OF UIKIT: Setting UIDevice.orientation is not supported. Please use UIWindowScene.requestGeometryUpdate(_:)

2、pod sign Xcode 14
error: Signing for "messagekit" requires a development team. Select a development team in the project editor。。。。。

fix :
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end
end

相关文章

网友评论

    本文标题:iOS 16.0 适配记录

    本文链接:https://www.haomeiwen.com/subject/arljortx.html