我在菜单中有一个按钮,当触摸它时,会弹出一条带有两个按钮的警报消息:“ Cancel
”和“ Yes
”。这是我的警报代码:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Exit game"
message:@"Are you sure?"
delegate:nil
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Yes", nil];
[alert show];
是否可以向按钮“ Yes
”添加操作?