禁止横屏的方法

在AppDelegate中增加这个方法可以禁止横屏

- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window  

    {  
         return UIInterfaceOrientationMaskPortrait;  
    }

posted on 2016-05-16 22:28  Coder_DJ  阅读(277)  评论(0)    收藏  举报

导航