Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 ipad 应用程序,我锁定到横向左侧。但是它有一个 uiwebview 可以根据内容更改为纵向或横向。我想按一个按钮来做到这一点。那可能吗?提前致谢!
一般来说,UIViewController 将允许其 UIView 旋转以跟随设备的方向。如果您不希望发生旋转,那么您可以使用指定您的首选/唯一方向supportedInterfaceOrientations:
supportedInterfaceOrientations:
因此,根据您的需要,当按下按钮时,调用supportedInterfaceOrientations:UIView 应该使用的唯一方向。在您指定方向调用attemptRotationToDeviceOrientation以强制转换之后。
attemptRotationToDeviceOrientation