视图横屏

来源:互联网 发布:网络编程书籍 编辑:程序博客网 时间:2024/05/30 23:03

页面大部分是竖屏,个别页面可以旋转手机时页面变为横屏实现步骤:

1.使应用可以横屏,新创建的默认就可以

这里写图片描述

2.在需要横屏的视图控制器里面实现以下方法

#if __IPHONE_OS_VERSION_MAX_ALLOWED < __IPHONE_9_0- (NSUInteger)supportedInterfaceOrientations#else- (UIInterfaceOrientationMask)supportedInterfaceOrientations#endif{    return UIInterfaceOrientationMaskLandscape;}- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {    return UIInterfaceOrientationLandscapeLeft;}-(BOOL)shouldAutorotate{    return NO;}
0 0