This所以答案显示了如何定义这样的完成块
@interface ViewController ()
typedef void(^myCompletion)(BOOl);
@end
@implementation ViewController
然而,当我尝试在我的ViewController中执行此操作时,我收到此错误
a parameter list without type is only allowed in a function definition
你能解释一下我做错了吗
答案 0 :(得分:1)
BOOl
不存在。 bool
和BOOL
。{
您收到错误,因为BOOl
不是类型。