1

我有一个 UIActionSheet 如下:

UIActionSheet *sheet = [[UIActionSheet alloc] initWithTitle:[NSString stringWithFormat: @"Cancel New %@? Changes will be lost.", [creator propertyName]] delegate:self cancelButtonTitle:@"Stay Here" destructiveButtonTitle:@"Discard and Close" otherButtonTitles:@"Save and Close", nil];
[sheet showInView:self.view];
[sheet release];

它创建操作表,显示按钮,破坏性按钮在顶部,取消按钮在底部,其他按钮(保存和关闭)显示在中间,

顶部两个按钮(破坏性和其他)工作正常,但底部按钮有一个间隙,因此它比其他按钮更向下。不过,出于某种原因,为了按下按钮,我需要触摸没有间隙的地方。触摸实际按钮不起作用。

对不起,如果这不是很清楚,有没有人遇到过这样的事情?我不喜欢太快地抽出“我发现了一个错误”卡片,也许我在这里做错了什么。

4

1 回答 1

4

您可能在选项卡栏控制器中的视图中显示操作表。

操作表显示在选项卡栏上方,但触摸未在选项卡栏占据的区域中注册。

尝试使用

[sheet showFromTabBar:self.tabBarController.tabBar];
于 2010-04-14T23:17:39.830 回答