stackoverflow上關(guān)于Objective-C關(guān)注度比較高的問題系列
鏈接
頁面之間傳遞數(shù)據(jù)
原文鏈接《Passing Data between View Controllers》
本文Github鏈接台腥,含代碼
關(guān)鍵詞
Passing Data between View Controllers
Delegate
Block
NSUserDefaults
Singleton
NSNotification
1.向下一個頁面?zhèn)鬟f數(shù)據(jù)
Passing Data Forward
從頁面A通過navitagion push進(jìn)入頁面B颅崩,此時需要傳遞數(shù)據(jù)(這個數(shù)據(jù)可以是object或者value)給頁面B,可以用下面這個方法话侧。
有兩個ViewController:ViewControllerA
和 ViewControllerB
,需用從ViewControllerA
傳遞一個字符串
給ViewControllerB
.
- 在
ViewControllerB
中添加一個NSString
類型的property
title
@property (nonatomic, copy) NSString *title;
- 在
ViewControllerA
中你需要導(dǎo)入ViewControllerB
#import "ViewControllerB.h"
然后在你需要pushViewControllerB
之前給ViewControllerB
的propety
title賦值
ViewControllerB *viewControllerB = [[ViewControllerB alloc] init];
viewControllerB.title = @"The second View";
[self.navigationController pushViewController:viewControllerB animated:YES];
2.通過Segues進(jìn)入下個頁面的傳遞數(shù)據(jù)
Passing Data Forward using Segues
如果你使用了Storyboards栅炒,那么很大可能會用到segue來push頁面掂摔。這里的數(shù)據(jù)傳遞和上面中的數(shù)據(jù)傳遞類似,在push頁面之前下面這個方法會被調(diào)用
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
所以從ViewControllerA
傳遞一個字符串
給ViewControllerB
的步驟應(yīng)如下:
- 在
ViewControllerB
中添加一個NSString
類型的property
title
@property (nonatomic, copy) NSString *title;
- 在
ViewControllerA
中你需要導(dǎo)入ViewControllerB
#import "ViewControllerB.h"
在Storyboard中創(chuàng)建一個從
ViewControllerA
到ViewControllerB
的segue赢赊,并且給這個segue一個identifier
乙漓,例如"showDetailSegue"
在
ViewControllerA
添加-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
方法,此方法會在任何使用segue進(jìn)行轉(zhuǎn)場時被調(diào)用(響應(yīng))释移。其中segue就是storyBoard轉(zhuǎn)場控制對象叭披,在參數(shù)segue中能夠獲取所要跳轉(zhuǎn)的試圖控制器,destinationViewController(目標(biāo)vc)玩讳,sourceViewController(源視圖vc)涩蜘。
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
if([segue.identifier isEqualToString:@"showDetailSegue"]){
ViewControllerB *viewControllerB = (ViewControllerB *)segue.destinationViewController;
viewControllerB.title = @"The second View";
}
}
如果你的ViewControllerB
是嵌入在一個NavigationController
中那么需要使用下面這個方法來獲取ViewControllerB
:
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
if([segue.identifier isEqualToString:@"showDetailSegue"]){
UINavigationController *navController = (UINavigationController *)segue.destinationViewController;
ViewControllerB * viewControllerB = (ViewControllerB *)navController.topViewController;
viewControllerB.title = @"The second View";
}
}
3.向上一個頁面?zhèn)鬟f數(shù)據(jù)
Passing Data Back
從ViewControllerB
向ViewControllerA
回傳數(shù)據(jù),你可以使用Protocol和delegate 或者是 Block熏纯。后者可以作為一種低耦合的回調(diào)機(jī)制
Protocol and Delegate 方式
我們將使ViewControllerA
為ViewControllerB
的一個delegate(代理)同诫。這樣可以允許ViewControllerB
發(fā)送一個message回傳給ViewControllerB
,從而實現(xiàn)回傳數(shù)據(jù)樟澜。
要想使ViewControllerA
為ViewControllerB
的一個delegate误窖,ViewControllerA
必須(conform)遵從ViewControllerB
的protocol(協(xié)議)叮盘。此協(xié)議將告訴ViewControllerA
哪些方法是必須要實現(xiàn)的。
-
ViewControllerB
中霹俺,在#import
和@interface
之間你需要具體說明你的協(xié)議柔吼,代碼如下:
@class ViewControllerB;
@protocol ViewControllerBDelegate <NSObject>
- (void)viewController:(ViewControllerB *)controller didFinishEnteringItem:(NSString *)content;
@end
- 接下來還是在
ViewControllerB
中,你需要給ViewContollerB添加一個delegate
屬性丙唧,然后在.m
中synthesize
@property (nonatomic, weak) id<ViewControllerBDelegate> delegate;
- 在
ViewControllerB
中當(dāng)我們需要傳遞數(shù)據(jù)給ViewControllerA
時愈魏,調(diào)用delegate
的方法。通常在點擊button或者頁面pop的時候想际。
- (IBAction)backButtonClicked:(id)sender {
NSString *content = @"Pass this value back to ViewControllerA";
if ([self.delegate respondsToSelector:@selector(viewController:didFinishEnteringItem:)]) {
[self.delegate viewController:self didFinishEnteringItem:content];
}
}
- 以上
ViewControllerB
部分就完成了培漏,接下來在ViewControllerA
中,導(dǎo)入ViewControllerB.h
并且遵從它的協(xié)議沼琉。
#import "ViewControllerB.h"
@interface ViewControllerA ()<ViewControllerBDelegate>
@end
- 在
ViewControllerA
中實現(xiàn)ViewControllerBDelegate
的方法北苟。
#pragma mark - ViewControllerBDelegate
- (void)viewController:(ViewControllerB *)controller didFinishEnteringItem:(NSString *)content {
NSLog(@"This was returned from ViewControllerB %@", content);
}
- 在push進(jìn)入
ViewControllerB
之前,你需要告訴ViewControllerB
打瘪,它的delegate
是ViewControllerA
友鼻。
ViewControllerB *viewControllerB = [[ViewControllerB alloc] init];
viewControllerB.delegate = self
[self.navigationController pushViewController:viewControllerB animated:YES];
Block 方式
我們將在ViewControllerA
中給ViewControllerB
的block賦值,當(dāng)在ViewControllerB
調(diào)用block時闺骚,ViewControllerA
中block將響應(yīng)彩扔,并執(zhí)行block中的操作。
- 在
ViewControllerB.h
中添加一個block
屬性
@property (nonatomic, copy) void (^block)(NSString *content);
- 在
ViewControllerB.m
中僻爽,當(dāng)我們需要傳遞數(shù)據(jù)給ViewControllerA
時虫碉,調(diào)用block
。通常在點擊button或者頁面pop的時候胸梆。
- (IBAction)backButtonClicked:(id)sender {
NSString *content = @"Pass this value back to ViewControllerA";
if (self.block) {
self.block(content);
}
}
- 在push進(jìn)入
ViewControllerB
之前敦捧,你需要給ViewControllerB
的block賦值。特別注意碰镜,在此處block中兢卵,如果要使用self的話,需要使用weakSelf绪颖,這樣能夠防止循環(huán)引用秽荤。具體代碼如下:
ViewControllerB *viewControllerB = [[ViewControllerB alloc] init];
__weak __typeof__ (self)weakSelf = self;
viewControllerB.block = ^(NSString *content) {
NSLog(@"This was returned from ViewControllerB %@", content);
weakSelf.tipLabel.text = content;
};
[self.navigationController pushViewController:viewControllerB animated:YES];
4.跨頁面的數(shù)據(jù)傳遞
有時候傳遞數(shù)據(jù)的兩個頁面并非相互緊挨著,有時候數(shù)據(jù)需要傳遞給多個頁面柠横,那么上述的方法就不太好用了窃款,下面介紹三個跨頁面的數(shù)據(jù)傳遞: NSUserDefaults, Singleton, NSNotification。
NSUserDefaults
簡單來說NSUserDefaults
是iOS系統(tǒng)提供的一個單例類(iOS提供了若干個單例類)牍氛,通過類方法standardUserDefaults
可以獲取NSUserDefaults
單例晨继,可以讀寫一下幾類數(shù)據(jù)。
NSData
NSString
NSNumber(BOOL, integer, float, double)
NSDate
NSArray
NSDictionary
NSURL
使用NSUserDefaults很簡單搬俊,在需要存儲的地方寫入數(shù)據(jù)紊扬,在需要使用的地方讀取數(shù)據(jù)曲饱。當(dāng)APP重新啟動,版本更新珠月,所存儲的數(shù)據(jù)都不會丟失;但是如果將APP卸載了楔敌,存儲在NSUserDefaults中的數(shù)據(jù)就會被一并刪除啤挎。
- 寫入
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
[userDefaults setObject:@"This string was in NSUserDefaults." forKey:@"kPassingDataBetweenViewControllers"];
[userDefaults synchronize];
- 讀取
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
NSString *content = [userDefaults objectForKey:@"kPassingDataBetweenViewControllers"];
self.userDefaultsLabel.text = content;
Singleton 單例
Singleton 會阻止其他對象實例化其自己的 Singleton 對象的副本,從而確保所有對象都訪問唯一實例卵凑。單例一旦被創(chuàng)建庆聘,在APP的整個生命周期內(nèi)都不會被銷毀(如果沒有手動銷毀的話)。所以單例可以用來存儲數(shù)據(jù)勺卢。
- 創(chuàng)建一個基于NSObject的文件伙判,
PassingDataManager
。在.h
中添加需要存儲數(shù)據(jù)的屬性和一個類方法(用于向整個系統(tǒng)提供這個實例)黑忱。
@interface PassingDataManager : NSObject
@property (nonatomic, copy) NSString *content;
+ (instancetype)sharedManager;
@end
- 在
.m
中
+ (instancetype)sharedManager {
static PassingDataManager *manager = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
manager = [[PassingDataManager alloc] init];
});
return manager;
}
單例不能放在堆區(qū)(控制器A死了宴抚,里面創(chuàng)建的對象也死了),在任何需要的地方的都能拿到甫煞,因此放到靜態(tài)區(qū)(靜態(tài)區(qū)內(nèi)部的對象只要一創(chuàng)建菇曲,它的聲明周期就和app 一樣)
- 在需要給其賦值的地方,需要
#import "PassingDataManager.h"
[PassingDataManager sharedManager].content = @"This message come from Singleton";
- 在需要取值的地方抚吠,需要
#import "PassingDataManager.h"
self.singletonLabel.text = [PassingDataManager sharedManager].content;
NSNotification 通知
使用通知可以在一處發(fā)送常潮,多處接收。
- 在需要添加通知的地方(接收數(shù)據(jù)處)添加通知楷力,并且添加處理通知的方法
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleData:) name:@"kPassingDataBetweenViewControllersNotification" object:nil];
#pragma mark - Notification
- (void)handleData:(NSNotification *)notification {
NSDictionary *info = notification.object;
NSString *content = [info valueForKey:@"content"];
self.title = content;
}
- 在發(fā)送通知的地方(發(fā)送數(shù)據(jù)處)
NSDictionary *info = @{@"content" : @"Notification"};
[[NSNotificationCenter defaultCenter] postNotificationName:@"kPassingDataBetweenViewControllersNotification" object:info];
- 在需要添加通知的地方(接收數(shù)據(jù)處)喊式,當(dāng)對象銷毀前需要將該對象注冊的通知移除掉,否則萧朝,程序會crash岔留。
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
5.總結(jié)
頁面見傳遞數(shù)據(jù)的方法有如下幾點:
- 在alloc一個class之后初始化該class的屬性;
- Delegate剪勿;
- Block贸诚;
- NSUserDefaults,此處可以延伸為數(shù)據(jù)持久化:plist, SQLite3, CoreData厕吉。
- Singleton;
- NSNotification