iOS Block的基本使用以及Block傳值

來源:互聯網
上載者:User

block為我們提供了一個非常便捷的方法去實現各種傳值以及回調

合理的使用block可以減少代碼量以及更加優雅的實現功能

現做個小整理如下:

#pragma mark About Block        //block的原型:    NSString *(^myBlock)(int);    //上面的代碼聲明了一個block(^)原型,名字叫做myBlock,包含一個int型的參數,傳回值為NSString類型的指標。        //block的定義:    myBlock=^(int paramA){        return [NSString stringWithFormat:@"Passed number:%d",paramA];    };        myBlock(2);        #pragma mark e.g.   Block Create And Usage        //基本使用   傳回值 UIImage object    UIImage *oldImage=[UIImage imageNamed:@"avatar"];    UIImage *(^myImageBlock)(UIImage*)=^(UIImage *image){        return image;    };    UIImage *newImage=myImageBlock(oldImage);        //基本使用  無傳回值    NSString *string=@"";    void (^logBlock)(NSString *)=^(NSString *paramStr){        NSLog(@"logBlock log:%@",paramStr);    };    logBlock(string);        //含有block參數的函數 比較常見的類型,如網路請求中的successfulBlock    //方法    - (void)turnNumberWithNumberA:(NSInteger)a NumberB:(NSInteger)b andMyBlock:(void(^)(int aa,int bb))myBlock{        int c=[[NSNumber numberWithInteger:a]intValue];        int d=[[NSNumber numberWithInteger:b]intValue];        myBlock(c,d);    }    //調用    [self turnNumberWithNumberA:1 NumberB:2 andMyBlock:^(int aa, int bb) {        NSLog(@"aa is %d",aa);        NSLog(@"bb is %d",bb);    }];            //block在兩個視圖的傳值 Apush到B B消失時將textfield的值傳回A    //B.h    typedef void (^ReturnTextBlock)(NSString *showText);//給block重新命名,方便調用        @interface B : UIViewController        @property (nonatomic, copy) ReturnTextBlock returnTextBlock;//聲明一個block屬性        - (void)returnText:(ReturnTextBlock)block;//加上後方便第A視圖書寫該block方法        @end        //B.m    - (void)returnText:(ReturnTextBlock)block {//block的實現方法        self.returnTextBlock = block;    }    - (void)viewWillDisappear:(BOOL)animated {                if (self.returnTextBlock != nil) {            self.returnTextBlock(self.inputTF.text);//視圖將要消失時候調用        }    }        //A.m需要push的時候調用    B *bVC = [[B alloc]init];        [bVC returnText:^(NSString *showText) {//定義B視圖後調用block        self.showLabel.text = showText;    }];


相關文章

聯繫我們

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