iOS 16.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 适配记录)