如何在 TabBar 应用程序中强制方向

发布于 2025-01-01 01:12:44 字数 375 浏览 1 评论 0原文

所有,

当我旋转 iPhone 时,即使我没有在任何地方指定“横向”,我的应用程序也会定向为横向。关于如何排除故障/修复有什么建议吗?

谢谢

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<string>UIInterfaceOrientationPortrait</string>
</plist>

All,

When I rotate my iPhone, my app is orientating to landscape even though I did not specify "landscape" anyplace. Any advice on how to troubleshoot/fix?

Thanks

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<string>UIInterfaceOrientationPortrait</string>
</plist>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我一向站在原地 2025-01-08 01:12:44

会尝试首先在视图控制器中设置它。

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

有时,如果需要,您可以使用这样的行来强制

 [[UIDevice currentDevice] setOrientation:UIDeviceOrientationPortrait];

plist 看起来像:

<key>UIInterfaceOrientation</key>
<string>UIInterfaceOrientationPortrait</string>

would try setting this in your view controllers first.

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

sometimes if needed you can use lines like this to force also

 [[UIDevice currentDevice] setOrientation:UIDeviceOrientationPortrait];

also the plist looks like:

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