如何使用 UIButton 上的代码解锁横向模式?

发布于 2024-12-03 17:46:03 字数 104 浏览 0 评论 0原文

目前,我的整个应用程序处于纵向模式,并且仅限于此。我希望仅在点击一个按钮时启用横向,然后在点击另一个按钮时返回纵向。

我该怎么做?

谢谢,

詹姆斯

At the moment, my whole app is in portrait mode and is locked to that only. I want landscape enabled only when a button is tapped and then back to portrait when another button is tapped.

How can I do this?

Thanks,

James

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

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

发布评论

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

评论(1

糖果控 2024-12-10 17:46:03

在您的视图 .m 文件中,您应该在底部看到一个函数:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
   // Return YES for supported orientations
   if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
   } else {
       return YES;
   }
}

更改适当的方向以使其正确并在按钮中引用它。或者将 if then 复制并粘贴到按钮中。应该可以做到这一点。

In your view .m file you should see a function towards the bottom:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
   // Return YES for supported orientations
   if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
   } else {
       return YES;
   }
}

Change the appropriate orientation to make it proper and reference it in your button. Or copy and paste the if then in your button. That should do it.

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