[Objective-C] 015_Delegate(委託代理)

來源:互聯網
上載者:User

標籤:

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(委託代理)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.