iOS7中UIActionSheet旁边的奇怪工件

时间:2013-09-30 18:57:13

标签: ios ios7

我的iOS7应用在UIActionSheet中有一个奇怪的视觉错误。如下所示。有什么想法吗?

enter image description here

代码:

UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:@"Done" destructiveButtonTitle:nil otherButtonTitles:nil];
[actionSheet showInView:self.view];

1 个答案:

答案 0 :(得分:3)

在绘制按钮层时看起来像是一个iOS7错误,无法真正想到一个解决方案,而是试图弄清楚导致这种情况发生的因素

也许尝试不同的方法,看看你是否取得了一些成功?

UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:nil destructiveButtonTitle:nil otherButtonTitles:nil];
[actionSheet addButtonWithTitle:@"Done"];
[actionSheet showInView:self.view];

或者可以将其设置在otherButtonTitles下?

这是一个奇怪的,但如果你能找到原因,可能值得向苹果提交错误报告