页面禁止横屏

//在AppDelegate中实现
//每个页面禁止横屏
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
    return UIInterfaceOrientationMaskPortrait;
}

 

posted on 2015-05-28 16:32  大木哥  阅读(302)  评论(0编辑  收藏  举报

导航