美文网首页
设置APP运行界面为竖屏,禁止屏幕旋转

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

作者: center11 | 来源:发表于2019-02-18 13:39 被阅读0次

    Android:

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

    IOS:

    Targets—>General—>Deployment Info

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

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

      return UIInterfaceOrientationMaskPortrait;

    }

    相关文章

      网友评论

          本文标题:设置APP运行界面为竖屏,禁止屏幕旋转

          本文链接:https://www.haomeiwen.com/subject/xsqaeqtx.html