iOS 单个页面屏幕旋转方法

2017-06-29  本文已影响0人  清蘂翅膀的技术

#pragma mark - 屏幕旋转

- (UIInterfaceOrientationMask)supportedInterfaceOrientations {

return UIInterfaceOrientationMaskPortrait;

}

- (BOOL)shouldAutorotate {

return NO;

}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {

return UIInterfaceOrientationPortrait;

}

上一篇 下一篇

猜你喜欢

热点阅读