iOS block傳值和屬性傳值

來源:互聯網
上載者:User

標籤:

第一個控制器:

-(void)barAction:(UIBarButtonItem*)sender
{

    NextViewController *next=[[NextViewController alloc]init];
    //拿當前頁面的值傳到後一個頁面
    next.stringValue=self.rv.textField.text;//屬性傳值

    
    //block傳值
    __weak RootViewController *weakSelf=self;//weakSelf可以在block中修改,__week改變相互持有的狀態,避免釋放的時候無法釋放
    
    
    //block前面傳後面
    //next.pv=^{
    //    return weakSelf.rv.textField.text;
    //};
    
    
    
    //block傳值
    next.mb=^(NSString *str){
        weakSelf.rv.textField.text=str;
    };
    
    
    [self.navigationController pushViewController:next animated:YES];

}

 

 

 

 

第二個控制器:

.h檔案


typedef void(^MyBlock)(NSString *str);//block傳值,定義一個block塊

//typedef NSString* (^PassValue)();//block前面傳後面

@interface NextViewController : UIViewController

//接受前一個頁面傳過來的值
@property(nonatomic,strong)NSString *stringValue;//屬性傳值

//block傳值
@property(nonatomic,copy)MyBlock mb;//block傳值


//@property(nonatomic,copy)PassValue pv;//block前面傳後面

.m檔案

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    UIBarButtonItem *bar=[[UIBarButtonItem alloc]initWithTitle:@"退回" style: UIBarButtonItemStyleDone target:self action:@selector(barAction:)];
    
    self.navigationItem.leftBarButtonItem=bar;
    
    //用前一個頁面傳過來的值賦給當前頁面
    self.nv.textField.text=self.stringValue;//屬性傳值
    //self.nv.textField.text=self.pv;//block前面傳後面
    
}

 

-(void)barAction:(UIBarButtonItem*)sender
{
    self.mb(self.nv.textField.text);//block傳值
    
    [self.navigationController popViewControllerAnimated:YES];
    
}

iOS block傳值和屬性傳值

聯繫我們

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