无法旋转到两个纵向方向
我已经将纵向方向添加到了 iPad 和普通的 .plist 中,但是它仍然没有旋转到顶部纵向上的按钮:S 这是我在 firstviewcontroller.m 中的代码
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;
}
i have added both the portrait orientations to the .plist for iPad and normal, how ever it is still not roating round to button on top portrait :S here is my code in the firstviewcontroller.m
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其放入所有视图控制器中,可能每个 iPhone/iPad 都有一个基本控制器和一个覆盖控制器。他们每个人都必须返回“是”(或“是/否”,具体取决于您想要支持的方向)。
Put it in all your view controllers, possible you have a base one and an overriden one for each of iPhone/iPad. Each of them must return YES (or YES/NO depending on the orientation you want to support).