热门搜索 :
考研考公
您的当前位置:首页正文

iOS- 支持某个页面旋转

来源:东饰资讯网

/* 旋转 */

  • (BOOL)shouldAutorotate {

    return YES;
    }
    //支持旋转方向

  • (UIInterfaceOrientationMask)supportedInterfaceOrientations {

    return UIInterfaceOrientationMaskAll;
    }

Top