黑马程序员-----Category,protocol和block(二)
Protocol //Button.h @protocol ButtonDelegate - (void)onclick:(Button *)btn; @end @interface Button : NSObject @property (nonatomic,retain) id delegate; - (void)click; @end