• How Do I Declare A Block in Objective-C?


     

      ——————注:(非海腾原创)   


     

    How Do I Declare A Block in Objective-C?

    As a local variable:

    returnType (^blockName)(parameterTypes) = ^returnType(parameters) {...};

    As a property:

    @property (nonatomic, copy, nullability) returnType (^blockName)(parameterTypes);

    As a method parameter:

    - (void)someMethodThatTakesABlock:(returnType (^nullability)(parameterTypes))blockName;

    As an argument to a method call:

    [someObject someMethodThatTakesABlock:^returnType (parameters) {...}];

    As a typedef:

    typedef returnType (^TypeName)(parameterTypes);
    TypeName blockName = ^returnType(parameters) {...};
    This site is not intended to be an exhaustive list of all possible uses of blocks.
    If you find yourself needing syntax not listed here, it is likely that a typedef would make your code more readable.

    Unable to access this site due to the profanity in the URL? http://goshdarnblocksyntax.com is a more work-friendly mirror.

    By Mike Lazer-Walker, who has a very bad memory for this sort of thing.

  • 相关阅读:
    游标、锁
    树形背包浅谈
    金字塔
    Codeforces Round #652 (Div. 2) 题解
    NOI1999 棋盘分割
    NEERC2002 Folding
    HDU4283 You Are the One
    Codeforces Round #646 (Div. 2) 题解
    洛谷 P1679 神奇的四次方数
    UVA12563 劲歌金曲
  • 原文地址:https://www.cnblogs.com/HaiTeng/p/5592045.html
Copyright © 2020-2023  润新知