我有这个问题:这是我的代码:
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个按钮显示正确,“发送邮件”按钮还可以,但取消点击只在上方......这里有一个说明情况的镜头:
我该如何解决这个问题?
谢谢:)