UIActionSheet 在横向模式下不旋转?

发布于 2024-11-06 21:13:09 字数 176 浏览 0 评论 0原文

我有一个 UIActionSheet,我将其视图设置如下:

[popup showInView:[[UIApplication sharedApplication] keyWindow]];

这在纵向模式下工作正常,但当我切换到横向时,它保持纵向。我做错了什么? 谢谢。

I have a UIActionSheet and I set it's view like this:

[popup showInView:[[UIApplication sharedApplication] keyWindow]];

this works fine in portrait mode, but when I switch to landscape, it stays portrait. What am I doing wrong?
Thanks.

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

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

发布评论

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

评论(3

水溶 2024-11-13 21:13:09

您将其显示在窗口中(未旋转),而不是在视图控制器的视图中(已旋转)。而是传递当前可见视图控制器的主视图,或者在 iPhone 上使用 showFromTabBar:showFromToolbar:showFromBarButtonItem:animated: 或 < iPad 上的代码>showFromRect:inView:animated:。

You're showing it in the window (which is not rotated), rather than in a view controller's view (which is). Pass the main view of your currently-visible view controller instead, or use showFromTabBar: or showFromToolbar: on iPhone or showFromBarButtonItem:animated: or showFromRect:inView:animated: on iPad.

夏见 2024-11-13 21:13:09

你可以用这个代替:

[popup showInView:[UIApplication sharedApplication].keyWindow.rootViewController.view];

You can use this instead:

[popup showInView:[UIApplication sharedApplication].keyWindow.rootViewController.view];
扮仙女 2024-11-13 21:13:09

[弹出showFromToolbar:self.view];

特别适用于 ActionSheet 中的 ActionSheet。

[popup showFromToolbar:self.view];

Special for ActionSheet within ActionSheet.

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