设置APP运行界面为竖屏,禁止屏幕旋转

Android:

在AndroidManifest.xml里声明Activity的时候加上一个属性:android:screenOrientation=" portrait",


设置APP运行界面为竖屏,禁止屏幕旋转_第1张图片


IOS:

Targets—>General—>Deployment Info


设置APP运行界面为竖屏,禁止屏幕旋转_第2张图片


修改AppDelegate.m,增加以下代码:

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

  return UIInterfaceOrientationMaskPortrait;

}


设置APP运行界面为竖屏,禁止屏幕旋转_第3张图片

你可能感兴趣的:(设置APP运行界面为竖屏,禁止屏幕旋转)