iOS强制横屏

//强制横屏

- (UIInterfaceOrientationMask)supportedInterfaceOrientations{

 

    return UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight;

}

原文地址:https://www.cnblogs.com/ios988/p/5500379.html