对于我的iPad应用程序,我打算禁用自动旋转。但是我听说苹果会拒绝该应用程序,因为他们希望该应用程序至少能够旋转180度。有谁之前经历过这个吗?有什么道理吗?
无论如何,有人可以建议我如何将自动旋转设置为仅纵向模式吗?即仅允许旋转180度。
任何帮助,将不胜感激。
谢谢
震
最佳答案
在您的视图控制器中,覆盖shouldAutorotateToInterfaceOrientation
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations.
return (interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown);
}
关于cocoa-touch - 如何只允许180度的自转?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6253840/