标签: iphone objective-c
我创建了这样的警报视图:
UIAlertView* av = [UIAlertView new]; av.title = @"Dealer offer Insurence"; [av addButtonWithTitle:@"YES"]; [av addButtonWithTitle:@"NO"];
如何找出用户点击了哪个按钮?
答案 0 :(得分:3)
the documentation以何种方式落空?您甚至可以从many code samples之一复制代码。