iOS block使用

來源:互聯網
上載者:User

標籤:

AViewController.h@interface AViewController : UIViewController {    UILabel *valueLabel;//?來接收SecondViewController傳回的值}@end實現AViewController.m- (void)viewDidLoad{    [super viewDidLoad];    valueLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 100, 300, 50)];    [self.view addSubview:valueLabel];    UIBarButtonItem *nextBtn = [[UIBarButtonItem alloc] initWithTitle:@"next"                style:UIBarButtonItemStylePlain target:self action:@selector(nextClick)];    self.navigationItem.rightBarButtonItem = nextBtn;}- (void)nextClick{   BViewController *svc = [[BViewController alloc] init];    svc.backValue = ^(NSString *strValue) {//設定SecondViewController?邊的block屬性,這是本程式的關鍵    valueLabel.text = strValue;};    [self.navigationController pushViewController:svc animated:YES];}BViewController.h@interface BViewController : UIViewController@property (nonatomic, copy) void (^backValue)(NSString *strValue);@property (nonatomic, retain) UITextField *text;@end實現BViewController.m@implementation BViewController- (void)viewDidLoad{    [super viewDidLoad];    self.view.backgroundColor = [UIColor whiteColor];    text = [[UITextField alloc] initWithFrame:CGRectMake(10, 50, 300, 40)];    text.borderStyle = UITextBorderStyleRoundedRect;    [self.view addSubview:text];    UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];    btn.frame = CGRectMake(10, 110, 60, 30);    [btn setTitle:@"返回" forState:UIControlStateNormal];    [btn addTarget:self action:@selector(btnClick)                     forControlEvents:UIControlEventTouchUpInside];    [self.view addSubview:btn];}- (void)btnClick{self.backValue(self.text.text);//調?block?法[self.navigationController popViewControllerAnimated:YES];}@end


block傳值的思路:

1,A類要傳值,即建立block屬性 void (^backValue)(NSString *strValue);然後實現它:self.backValue(要傳的值)

2,B類要得到A的傳值  即實現A的的屬性。

    AViewController *aVC = [[AViewController alloc] init];    //通過block傳值,城市切換    aVC.backValue = ^(NSString *strValue) {//設定SecondViewController?邊的block屬性,這是本程式的關鍵        self.cityName = strValue;    };

3,分析blcok屬性的寫法

傳回值-名稱-參數

傳回值-名稱-等號

@property (nonatomic, copy) void      (^backValue)  (NSString *strValue);@property (nonatomic, copy) NSString  *name;        =





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.