【发布时间】:2011-07-14 21:05:02
【问题描述】:
我有这个问题: 这是我的代码:
UIActionSheet *popupQuery = [[UIActionSheet alloc] initWithTitle:@"Share the race" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Send with mail" otherButtonTitles:nil];
popupQuery.actionSheetStyle = UIActionSheetStyleBlackTranslucent;
[popupQuery showInView:self.view];
[popupQuery release];
一切似乎都很好,2 个按钮显示正确,“发送邮件”按钮还可以,但取消仅在上方捕获点击... 这是一个说明情况的镜头:
我该如何解决这个问题?
谢谢:)
【问题讨论】:
标签: iphone ios objective-c uiactionsheet cancel-button