有谁知道带有 < > 括号的 MenuDelegate 这个语法做什么???以及为什么有人要使这样的一段代码复杂化。
@protocol MenuDelegate
- (void)optionSelected:(NSString *)option;
@end
@interface ContentMenu : UITableViewController {
NSMutableArray *_test;
id<MenuDelegate> _delegate;
}
谢谢