gpt4 book ai didi

ios - UIActionSheet 被它的 super View 剪裁,我没有工具栏或标签栏

转载 作者:技术小花猫 更新时间:2023-10-29 10:37:11 27 4
gpt4 key购买 nike

我的应用程序使用 UINavigationController,但我没有显示工具栏,因为我的所有导航都由游戏内控件控制。

我没有标签栏,因为我没有使用 TabBarController。

我的游戏应用只有横向。

这是我之前创建和呈现 UIActionSheet 的方式:

UIActionSheet *quitGameSheet = [[UIActionSheet alloc] 
initWithTitle:@"Quit your game?"
delegate:self
cancelButtonTitle:@"Cancel"
destructiveButtonTitle:@"Yes, quit game"
otherButtonTitles:nil];
[quitGameSheet showInView:self.view];

但是,UIActionSheet 大部分都在屏幕外,我收到此错误:

Presenting action sheet clipped by its superview. Some controls might not respond to touches. On iPhone try -[UIActionSheet showFromTabBar:] or -[UIActionSheet showFromToolbar:] instead of -[UIActionSheet showInView:].

但是,我没有工具栏,也没有标签栏。

我已经尝试了其他几个 Stack Overflow 答案,但没有一个对我有用:

Issue with UIActionSheet

我尝试从 self.navigationController.view、self.parentViewController.view、我创建的位于 View 底部的 CGRect 和 self.view.bounds 中呈现它,因为我很绝望。它对我有用。

它在 iOS 6 中有效,但在 iOS 7 中无效。以下是它在 iOS 6 中有效但在 iOS 7 中失败的几个屏幕截图。

enter image description here

enter image description here

有什么帮助吗?

更新 1 ---

这是请求的 View 层次结构:

<UIView: 0xc480380; frame = (0 0; 568 320); autoresize = RM+BM; layer = <CALayer: 0xc4803e0>>
| <UIImageView: 0xc480410; frame = (0 0; 568 320); opaque = NO; autoresize = W+H; userInteractionEnabled = NO; layer = <CALayer: 0xc4804a0>>
| <UIButton: 0xc47b370; frame = (203 107; 159 37); opaque = NO; autoresize = LM+RM+BM; layer = <CALayer: 0xc47a730>>
| | <UIImageView: 0xc475150; frame = (0 0; 159 37); clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0xc4751e0>>
| <UIButton: 0xc478a00; frame = (203 152; 159 37); opaque = NO; autoresize = LM+RM+BM; layer = <CALayer: 0xc477dd0>>
| | <UIImageView: 0xc475030; frame = (0 0; 159 37); clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0xc4750c0>>
| <UISwitch: 0xc47dcc0; frame = (313 65; 51 31); opaque = NO; autoresize = LM+RM+BM; layer = <CALayer: 0xc47d180>>
| | <_UISwitchInternalViewNeueStyle1: 0xc47e040; frame = (0 0; 51 31); gestureRecognizers = <NSArray: 0xc47ffa0>; layer = <CALayer: 0xc47e140>>
| | | <UIView: 0xc47e4e0; frame = (35.5 0; 15.5 31); clipsToBounds = YES; layer = <CALayer: 0xc47e540>>
| | | | <UIView: 0xc47e330; frame = (-35.5 0; 51 31); layer = <CALayer: 0xc47e390>>
| | | <UIView: 0xc47e450; frame = (0 0; 35.5 31); clipsToBounds = YES; layer = <CALayer: 0xc47e4b0>>
| | | | <UIView: 0xc47e3c0; frame = (0 0; 51 31); layer = <CALayer: 0xc47e420>>
| | | <UIView: 0xc47f750; frame = (0 0; 51 31); layer = <CALayer: 0xc47f7b0>>
| | | | <UIImageView: 0xc47f480; frame = (39 16; 0 0); alpha = 0; userInteractionEnabled = NO; layer = <CALayer: 0xc47f660>>
| | | | <UIImageView: 0xc47f690; frame = (12 16; 0 0); userInteractionEnabled = NO; layer = <CALayer: 0xc47f720>>
| | | <UIImageView: 0xc47e680; frame = (7 -6; 57 43.5); opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0xc47f2f0>>
| <UILabel: 0xc480610; frame = (173 63; 96 29); text = 'Sounds:'; clipsToBounds = YES; opaque = NO; autoresize = LM+RM+BM; userInteractionEnabled = NO; layer = <CALayer: 0xc480540>>
| <UIButton: 0xc473a20; frame = (203 197; 159 37); opaque = NO; autoresize = LM+RM+BM; layer = <CALayer: 0xc473590>>
| | <UIImageView: 0xc474f30; frame = (0 0; 159 37); clipsToBounds = YES; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0xc474fc0>>

最佳答案

我在同一个应用程序中遇到了一个看起来完全不相关的问题,其中屏幕左侧的一些按钮不可点击。

Can't tap buttons on the left side of 4" iPhone

在调查时我发现我的 UIWindow 是 320x480。问题出在我的 MainWindow.xib 中。 Xcode 为我创建了这个 xib,但它可能是 Xcode 3,而且是几年前的事了。我决定检查设置并注意到“启动时全屏”选项。我在文档中查找了该选项,并且有一条注释说明它应该始终处于打开状态,以便正确调整窗口大小以匹配设备大小。当只有一种尺寸的 iPhone 时,这从来都不是问题,但随着 4 英寸 iPhone 的推出,这就成了问题。

所以,我选中了那个框,然后重新启动,中提琴,这个问题和另一个问题都解决了,因为封闭的 UIWindow 的大小是正确的。

关于ios - UIActionSheet 被它的 super View 剪裁,我没有工具栏或标签栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18995620/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com