zoukankan      html  css  js  c++  java
  • 启动程序强制切换到横屏模式

    启动IPhone应用程序,强制将屏幕从初始时的纵向切换到横评模式

    在主UIViewController的源代码内,修改如下代码,参考代码如下所示:

    // Override to allow orientations other than the default portrait orientation.

    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

    {

      return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation ==                   UIInterfaceOrientationLandscapeRight);

    }

    THE END !

  • 相关阅读:
    shell循环
    shell选择语句
    shell运算符
    shell变量
    前端基础复习
    flask 模板
    flask 会话技术
    flask 项目结构
    Tornado 框架介绍
    flask-models 操作
  • 原文地址:https://www.cnblogs.com/xingchen/p/2160305.html
Copyright © 2011-2022 走看看