摘要: 在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 阅读全文
posted @ 2014-02-11 20:13 路途遥远 阅读(1431) 评论(0) 推荐(0) 编辑