标签:
首先在这个viewContoller里面设定只支持横向
//iOS 7 above
-(UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationLandscapeLeft;
}
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscape;
}标签:
原文地址:http://blog.csdn.net/haogaoming123/article/details/42707819