iOS开发Debug之单个页面强制横屏

来源:互联网 发布:淘宝乒乓球店 编辑:程序博客网 时间:2024/06/01 20:14

APP只支持竖屏,有些页面血药横屏,比如视频全屏播放。

解决方法:

1.AppDelegate.h 里

@property (nonatomic, assign) BOOL allowRotation; // 标记是否可以旋转

2.AppDelegate.m 里

- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)nowWindow {   

    if (_allowRotation) {

        return UIInterfaceOrientationMaskAll;  

    } else{

        return UIInterfaceOrientationMaskPortrait;

    }

}

3.在需要横屏的界面调用

    AppDelegate *appDelegate = [UIApplication sharedApplication].delegate;

    appDelegate.allowRotation = YES;



0 0
原创粉丝点击