標籤:
Delegate在iOS開發中隨處可見,Delegate是一種功能強大的軟體架構設計理念,它的功能是程式中一個對象代表另一個對象,或者一個對象與另外一個對象協同工作(如小明喜歡一個女孩如花,卻苦於沒有如花的連絡方式,於是叫好兄弟小東去拿如花連絡方式,小東同學一天后返回結果給小明,....)。小明能否成功追到如花,小東在其中又做了些啥事,下面一步步分解。
1.建立一個Delegate(通過protocol)
#import <Foundation/Foundation.h>
@protocol PhoneNumberDelegate <NSObject>@required- (NSString *)goddessPhoneNumber;@end
2.聲明一個Delegate(小明)
@interface Student : Person <StudentProtocol>@property (nonatomic, assign) id<PhoneNumberDelegate>delegate;- (id)initWithName:(NSString *)name sex:(NSString *)sex age:(int)age;@end
3.實現委託代理方法(小東)
#import "Person.h"@implementation Person@synthesize name = _name,sex = _sex;@synthesize age = _age;- (NSString *)goddessPhoneNumber { NSLog(@"正在火速趕往如花家中,向如花媽媽打探如花的號碼... 5分鐘拿到了. 如花的號碼13888888888"); return @"13888888888";}@end
4.設定委託代理(小明->小東),並調用代理方法
#import "AppDelegate.h"#import "Person.h"#import "Student.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { Student *xiaoMing = [[Student alloc] init]; Person *xiaoDong = [[Person alloc] init]; //設定委託代理 xiaoMing.delegate = xiaoDong; //執行委託代理方法 NSString *phoneNumber = [xiaoDong goddessPhoneNumber]; //保留女神的號碼 xiaoMing.goddessPhoneNumber = phoneNumber; return YES;}@end
Delegate就是這麼簡單好用,小明如願拿到了如花的號碼。
2015-08-10 21:20:56.516 Attendance[56285:1842177] 正在火速趕往如花家中,向如花媽媽打探如花的號碼... 5分鐘拿到了. 如花的號碼13888888888
2015-08-10 21:20:56.517 Attendance[56285:1842177] 小明終於拿到了如花的號碼:13888888888
本站文章為 寶寶巴士 SD.Team 原創,轉載務必在明顯處註明:(作者官方網站: 寶寶巴士 )
轉載自【寶寶巴士SuperDo團隊】 原文連結: http://www.cnblogs.com/superdo/p/4719244.html
[Objective-C] 015_Delegate(委託代理)