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