Multi-Threading implementation in iOS _04_block

Source: Internet
Author: User

Block 1, block definition

is to prepare a snippet of code to execute when needed

Note:block is the C language format

2. Block format

Format: return type (^blockname) (parameter type) = ^ (formal parameter list) {code implementation};

Tip: If there are no parameters, the format can be simplified

Format: return type (^blockname) () = ^ {Code implementation};

Enter Inlineblockin Xcode, prompt, this is the block format shortcut

3. Sample Code

(1) First look at how block is used

    void (^myblock) () = ^ {        NSLog (@ "Hello block");    };         // Call Block    Myblock ();

The output is: Hello block

(2) with parameters

    void (^sumblock) (intint) = ^ (intint  y) {        NSLog (@ "%d" ) , x + y);    };        Sumblock (ten);

Output is: 30

Multi-Threading implementation in iOS _04_block

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.