zoukankan      html  css  js  c++  java
  • block作为函数参数回调

    Blocks make this much easier, however, because you can define the callback behavior at the time you initiate the task, like this:

    - (IBAction)fetchRemoteInformation:(id)sender {
        [self showProgressIndicator];
     
        XYZWebTask *task = ...
     
        [task beginTaskWithCallbackBlock:^{
            [self hideProgressIndicator];
        }];
    }
    This example calls a method to display the progress indicator, then creates the task and tells it to start. The callback block specifies the code to be executed once the task completes; in this case, it simply calls a method to hide the progress indicator. Note that this callback block captures self in order to be able to call the hideProgressIndicator method when invoked. It’s important to take care when capturing self because it’s easy to create a strong reference cycle, as described later in Avoid Strong Reference Cycles when Capturing self.

    In terms of code readability, the block makes it easy to see in one place exactly what will happen before and after the task completes, avoiding the need to trace through delegate methods to find out what’s going to happen.

    The declaration for the beginTaskWithCallbackBlock: method shown in this example would look like this:

    - (void)beginTaskWithCallbackBlock:(void (^)(void))callbackBlock;
    The (void (^)(void)) specifies that the parameter is a block that doesn’t take any arguments or return any values. The implementation of the method can invoke the block in the usual way:

    - (void)beginTaskWithCallbackBlock:(void (^)(void))callbackBlock {
        ...
        callbackBlock();
    }
    Method parameters that expect a block with one or more arguments are specified in the same way as with a block variable:

    - (void)doSomethingWithBlock:(void (^)(double, double))block {
        ...
        block(21.0, 2.0);
    }
    A Block Should Always Be the Last Argument to a Method

    It’s best practice to use only one block argument to a method. If the method also needs other non-block arguments, the block should come last:

    - (void)beginTaskWithName:(NSString *)name completion:(void(^)(void))callback;
    This makes the method call easier to read when specifying the block inline, like this:

        [self beginTaskWithName:@"MyTask" completion:^{
            NSLog(@"The task is complete");
        }];


  • 相关阅读:
    Python3爬取前程无忧数据分析工作并存储到MySQL
    MySQL操作数据库和表的基本语句(DDL
    MyBatis的增删改查操作
    指定方向或者位置移动
    AI-Tank
    转载人家写的CURSOR
    Ajax学习整理笔记
    全面解析注解
    java调用存储过程mysql
    JAVA如何调用mysql写的存储过程
  • 原文地址:https://www.cnblogs.com/NSNULL/p/4482350.html
Copyright © 2011-2022 走看看