iOS- 支持某个页面旋转

/* 旋转 */

  • (BOOL)shouldAutorotate {

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

  • (UIInterfaceOrientationMask)supportedInterfaceOrientations {

    return UIInterfaceOrientationMaskAll;
    }

你可能感兴趣的:(iOS- 支持某个页面旋转)