iOS设备保持横排方向

//保持横排方向

-(NSUInteger)supportedInterfaceOrientations{

    returnUIInterfaceOrientationMaskLandscapeLeft;

}

 

- (BOOL)shouldAutorotate

{

    returnYES;

}

原文地址:https://www.cnblogs.com/wisejoker/p/3553099.html