此代码使用委托
[[[UIAlertView alloc] initWithTitle: @ "Error" message: @ "You can leave the text blank" delegate: self cancelButtonTitle: @ "Quit" otherButtonTitles: @ "OK", nil] show];
有问题的代表是:
(void) alertView: (UIAlertView *) alertView clickedButtonAtIndex: (NSInteger) buttonIndex {
我的问题是:你如何为 Xcode 委托方法自动完成?
在 Eclipse 中,您可以从 Source 菜单选项 Generate Delegate 方法中进行。
问候和感谢!