强制横屏

 说明:目前在ios7,ios8上验证有效,注意该UIViewController不能添加到UINavigationController,只能presentViewController方式添加。

 

- (BOOL)shouldAutorotate
{

    return NO;

}

 

- (NSUInteger)supportedInterfaceOrientations

{

    // 强制横屏

    return UIInterfaceOrientationMaskLandscapeRight;

}

 

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation

{

    // 强制横屏

    return UIInterfaceOrientationLandscapeRight;

}

posted on 2015-03-18 15:57  trako  阅读(221)  评论(0编辑  收藏  举报

导航