iOS 设置app禁止横屏
- 作者: 段子-搬运工
- 来源: 51数据库
- 2022-08-17
在 AppDelegate.m中添加如下代码:
-(UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window{
return UIInterfaceOrientationMaskPortrait;
}
推荐阅读
