在iPad中限制颠倒

时间:2015-07-16 12:56:43

标签: objective-c iphone ipad xcode6

虽然通过TARGET> GENERAL> DEPLOYMENT-> DEVICE ORIENTATION禁用iPhone设备中的颠倒方向但在iPad中未禁用它。请告诉我如何在ipad中禁用颠倒的orienatation

1 个答案:

答案 0 :(得分:0)

试试这个

-(NSUInteger)supportedInterfaceOrientations {
    UIViewController *topVC = self.topViewController;
    return topVC.supportedInterfaceOrientations;
}

希望它有所帮助。

相关问题