代碼demo已在Github開源, MXRotationManager, 若是能幫助到您,請幫忙點個星star哈,謝謝!git
MXRotationManager
一行代碼控制iOS設備旋轉方向UIInterfaceOrientationMask
github
UIDeviceOrientationLandscapeLeft | UIDeviceOrientationLandscapeRight |
---|---|
![]() |
![]() |
在 AppDelegate.m
裏 實現 AppDelegate
代理方法bash
- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
return [MXRotationManager defaultManager].interfaceOrientationMask;
}
複製代碼
[MXRotationManager defaultManager].orientation = UIDeviceOrientationLandscapeLeft;
複製代碼
[MXRotationManager defaultManager].orientation = UIDeviceOrientationLandscapeRight;
複製代碼