iOS實現兩個控制器之間資料的雙向傳遞_IOS

來源:互聯網
上載者:User

本文為大家分享了iOS控制器之間資料的雙向傳遞,供大家參考,具體內容如下

首先,有兩個控制器,分別為控制器A、控制器B。
A->B:資料由控制器A傳向控制器B,這叫做資料的順傳;資料由控制器B傳向控制器A,這叫做逆傳。
順傳:一般通過建立目標控制器對象,將資料賦值給對象的成員來完成;
逆傳:一般使用代理來實現,其中控制器A是控制器B的代理(控制器A監聽控制器B,控制器B通知控制器A)。
下面是博主寫的簡單實現了兩個控制間實現資料的雙向傳遞的app的demo:
1、這是介面設計:

FirstViewController.h

#import <UIKit/UIKit.h>@interface FirstViewController : UIViewController@end

FirstViewController.m

#import "FirstViewController.h"#import "SecondViewController.h"@interface FirstViewController ()<SecondViewControllerDelegate>/** 用於寫入資料,最後該資料用於傳遞給第二個介面 */@property (weak, nonatomic) IBOutlet UITextField *first2Second;/** 用於顯示第二個介面返回來時傳遞的資料 */@property (weak, nonatomic) IBOutlet UITextField *displayWithSecond;@end@implementation FirstViewController- (void)viewDidLoad {  [super viewDidLoad];}#pragma mark - Navigation//點擊傳遞按鈕時會自動調用此方法- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {  SecondViewController *vc = (SecondViewController *)segue.destinationViewController;  if (self.first2Second.text.length > 0) {    //將該介面中的資料傳遞給第二個介面    vc.name = self.first2Second.text;  }  //設定當前控制器為SecondViewController控制器的代理  vc.delegate = self;}#pragma mark - 實現SecondViewControllerDelegate中的協議方法-(void)secondViewControllerDidDit:(SecondViewController *)viewController andName:(NSString *)name{  //將第二個介面中的資料返回給第一個介面(此介面)  self.displayWithSecond.text = name;}@end

SecondViewController.h

#import <UIKit/UIKit.h>@class SecondViewController;@protocol SecondViewControllerDelegate <NSObject>/** SecondViewControllerDelegate協議中的方法 */-(void)secondViewControllerDidDit:(SecondViewController *)viewController andName:(NSString *)name;@end@interface SecondViewController : UIViewController@property(nonatomic,strong) NSString *name;@property(nonatomic,weak) id<SecondViewControllerDelegate> delegate;@end

SecondViewController.m

#import "SecondViewController.h"@interface SecondViewController ()/** 用於寫入資料,最後將資料返回給第一個介面 */@property (weak, nonatomic) IBOutlet UITextField *second2First;/** 用於顯示第一個介面傳過來的資料 */@property (weak, nonatomic) IBOutlet UITextField *displayWithFirst;/** 點擊此按鈕,第二個控制器將彈出棧,介面將返回到第一個介面 */- (IBAction)second2First:(UIButton *)sender;@end@implementation SecondViewController- (void)viewDidLoad {  [super viewDidLoad];  //顯示第一個介面傳遞過來的資料資訊  self.displayWithFirst.text = self.name;}//點擊該按鈕,資料將返回給第一個介面顯示- (IBAction)second2First:(UIButton *)sender {  if (self.second2First.text.length > 0) {    //如果有實現該協議方法的控制器,則將資料傳給該控制器    if ([self.delegate respondsToSelector:@selector(secondViewControllerDidDit:andName:)]) {      [self.delegate secondViewControllerDidDit:self andName:self.second2First.text];    }  }  [self.navigationController popViewControllerAnimated:YES];}@end

以上就是本文的全部內容,希望能給大家一個參考,也希望大家多多支援雲棲社區。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.