摘要:
在ios中,委托模式非常常见,那委托模式是什么?委托模式是把一个对象把请求给另一个对象处理。下面见例子:#import @protocol LQIPeople@required-(void) eat;-(void) run;-(void) walk;@optional-(void) speak;@end@interface LQPerson : NSObject@property (assign) id peopleDelegate;-(void) liveADay;@end#import "LQPerson.h"@implementation LQPerson@synth 阅读全文