iOS是面向對象開發的,有不少不一樣的類,不少時候會遇到類與類之間的"交流"需求,好比通知、傳遞數值等等,(通知能夠用nsnotificationcenter來作, 之後總結)下面主要總結一下類之間的傳值方式。post
一、屬性傳值學習
前向後傳值atom
。
二、協議傳值spa
三、Block傳值代理
代替協議代理傳值,主要時間點問題。code
四、單例傳值
數據共享。server
五、通知傳值
對象
通知中心
NSNotificationCenter提供了一種更加解耦的方式。最典型的應用就是任何對象對能夠發送通知到中心,同時任何對象能夠監聽中心的通知。
發送通知的代碼以下:blog
[[NSNotificationCenter defaultCenter] postNotificationName:@」myNotificationName」 object:broadcasterObject];開發
註冊接收通知的代碼以下:
[[NSNotificationCenter defaultCenter] addObserver:listenerObject selector:@selector(receivingMethodOnListener:) name:@」myNotificationName」 object:nil];
註冊通知的時候能夠指定一個具體的廣播者對象,但這不是必須的。你可能注意到了defaultCenter 。實際上這是你在應用中會使用到的惟一的中心。通知會向整個應用開放,所以只有一箇中心。
同時還有一個NSDistributedNotificationCenter。這是用來應用間通訊的。在整個計算機上只有一個該類型的中心。
優勢: 通知的發送者和接受者都不須要知道對方。能夠指定接收通知的具體方法。通知名能夠是任何字符串。
缺點: 較鍵值觀察須要多點代碼。在刪掉前必須移除監聽者。不能傳大量數值,只能讓誰去作什麼事。
一、使用SharedApplication,定義一個變量來傳遞.
二、使用文件,或者NSUserdefault來傳遞
三、經過一個單例的class來傳遞
四、經過Delegate來傳遞。(經常使用)
iOS開發使用委託delegate在不一樣窗口之間傳遞數據是本文要介紹的內容,主要是來說解如何使用委託delegate在不一樣窗口之間傳遞數據,具體內容來看詳細內容。在IOS開發裏兩個UIView窗口之間傳遞參數方法有不少,好比
前面3種方法,暫且不說,此次主要學習如何使用經過Delegate的方法來在不一樣的UIView裏傳遞數據
好比: 在窗口1中打開窗口2,而後在窗口2中填入一個數字,這個數字又回傳給窗口1。
窗口1
窗口2
窗口2的結果傳遞給窗口1
一、首先定義個一委託UIViewPassValueDelegate用來傳遞值
@protocol UIViewPassValueDelegate - (void)passValue:(NSString *)value; @end
這個protocol 就是用來傳遞值
二、在窗口1的頭文件裏,聲明delegate
#import <UIKit/UIKit.h> #import "UIViewPassValueDelegate.h" @interface DelegateSampleViewController : UIViewController <UIViewPassValueDelegate> { UITextField *_value; } @property(nonatomic, retain) IBOutlet UITextField *value; - (IBAction)buttonClick:(id)sender; @end
並實現這個委託
- (void)passValue:(NSString *)value { self.value.text = value; NSLog(@"the get value is %@", value); }
button的Click方法,打開窗口2,並將窗口2的delegate實現方法指向窗口1。
- (IBAction)buttonClick:(id)sender { ValueInputView *valueView = [[ValueInputView alloc] initWithNibName:@"ValueInputView" bundle:[NSBundle mainBundle]]; valueView.delegate = self; [self setModalTransitionStyle:UIModalTransitionStyleCoverVertical]; [self presentModalViewController:valueView animated:YES]; }
第二個窗口的實現
.h 頭文件
#import <UIKit/UIKit.h> #import "UIViewPassValueDelegate.h" @interface ValueInputView : UIViewController { NSObject<UIViewPassValueDelegate> * delegate; UITextField *_value; } @property(nonatomic, retain)IBOutlet UITextField *value; @property(nonatomic, retain) NSObject<UIViewPassValueDelegate> * delegate; - (IBAction)buttonClick:(id)sender; @end
.m實現文件
#import "ValueInputView.h" @implementation ValueInputView @synthesize delegate; @synthesize value = _value; - (void)dealloc { [self.value release]; [super dealloc]; } - (IBAction)buttonClick:(id)sender { [delegate passValue:self.value.text]; NSLog(@"self.value.text is%@", self.value.text); [self dismissModalViewControllerAnimated:YES]; } - (void)didReceiveMemoryWarning { // Releases the view if it doesn't have a superview. [super didReceiveMemoryWarning]; // Release any cached data, images, etc. that aren't in use. } - (void)viewDidUnload { [super viewDidUnload]; // Release any retained subviews of the main view. // e.g. self.myOutlet = nil; } @end