定义完成块参数列表错误

时间:2014-04-26 13:47:07

标签: ios objective-c

This所以答案显示了如何定义这样的完成块

@interface ViewController ()
typedef void(^myCompletion)(BOOl);
@end

@implementation ViewController

然而,当我尝试在我的ViewController中执行此操作时,我收到此错误

a parameter list without type is only allowed in a function definition

你能解释一下我做错了吗

1 个答案:

答案 0 :(得分:1)

BOOl不存在。 boolBOOL。{ 您收到错误,因为BOOl不是类型。