我的iOS7应用在UIActionSheet中有一个奇怪的视觉错误。如下所示。有什么想法吗?
代码:
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:@"Done" destructiveButtonTitle:nil otherButtonTitles:nil];
[actionSheet showInView:self.view];
答案 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
下?
这是一个奇怪的,但如果你能找到原因,可能值得向苹果提交错误报告