关于iOS & iPadOS 16 beta 6相关API废弃
Overview
在查看官网发行说明中发现在iOS 16 beta 6版本中将shouldAutorotate
方法弃用。
在此记录一下,后面适配iOS16时看是否需要修改。
官网介绍
UIKit
Deprecations
[UIViewController shouldAutorotate]
不再支持已弃用。
已弃用并替换为:
1 | [UIViewController attemptRotationToDeviceOrientation] |
解决方法:如果支持的方向发生变化,可以使用下面方法
1 | [UIViewController setNeedsUpdateOfSupportedInterfaceOrientations] |
详细内容可查阅官网发行说明