5

Obj-C 块是我最近第一次使用的东西。我试图理解以下块语法:

在头文件中:

@property (nonatomic, copy) void (^completionBlock)(id obj, NSError *err);

在主文件中:

-(void)something{

id rootObject = nil;

// do something so rootObject is hopefully not nil

    if([self completionBlock])
        [self completionBlock](rootObject, nil); // What is this syntax referred to as?
}

我感谢您的帮助!

4

2 回答 2

5

块是对象。

在您的方法中,您正在检查块是否不为零,然后您正在调用它并传递两个必需的参数......

请记住,块的调用方式与 ac 函数的调用方式相同...

下面我将声明一分为二,以便您更好地理解:

[self completionBlock]  //The property getter is called to retrieve the block object
   (rootObject, nil);   //The two required arguments are passed to the block object calling it
于 2012-09-21T07:17:59.690 回答
2

它是一个块属性,您可以在运行时设置一个块。

这是要设置的语法

因为它是void类型,所以在类中你可以通过下面的代码设置一个方法

self.completionBlock = ^(id aID, NSError *err){
    //do something here using id aID and NSError err
};

使用以下代码,您可以调用之前设置的方法/块。

if([self completionBlock])//only a check to see if you have set it or not
{
        [self completionBlock](aID, nil);//calling
}
于 2012-09-21T07:33:35.990 回答