我遇到了 GestureRecognizer 和 BlocksKit 的问题,这给了我一个构建错误。
基本上我想在一个手势上运行一个块。我已经从这里的文档中复制了代码......
http://zwaldowski.github.com/BlocksKit/Documentation/Categories/UIGestureRecognizer(BlocksKit).html
...到目前为止,我没有成功,因为我每次都收到相同的构建错误。我四处搜寻,找不到与我遇到相同问题的任何东西,所以我希望这里的人可以提供帮助。
我使用的代码是...
UITapGestureRecognizer *singleTap = [UITapGestureRecognizer recognizerWithHandler:^(id sender) {
NSLog(@"Single tap.");
} delay:0.18];
我收到的错误是...
/Users/JohnSlater/Desktop/iOS Apps/Flink/flink/ViewController.m:202:91: Incompatible block pointer types sending 'void (^)(id)' to parameter of type 'BKGestureRecognizerBlock' (aka 'void (^)(UIGestureRecognizer *, UIGestureRecognizerState, CGPoint)')
提前致谢