无法旋转到两个纵向方向

发布于 2024-11-02 05:21:05 字数 312 浏览 5 评论 0原文

我已经将纵向方向添加到了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似梦非梦 2024-11-09 05:21:05

将其放入所有视图控制器中,可能每个 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文