supportedInterfaceOrientationsForWindow方法在iPad无效

- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {

    return UIInterfaceOrientationMaskAll;
}

这个方法在iPad上不执行,原因是因为ipad支持split view,所以优先遵守split view的协议了,split view强制支持所有方向。

解决方案:
General—>Deployment Info—>Status Bar Style设置成Reqyires full screen

你可能感兴趣的:(supportedInterfaceOrientationsForWindow方法在iPad无效)