iOS 设置app禁止横屏

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

在 AppDelegate.m中添加如下代码:

-(UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window{
    return UIInterfaceOrientationMaskPortrait;
}