我们可以将块与手势识别器一起使用吗?看起来并非如此。例如,这不起作用:
UITapGestureRecognizer *tapped = [[UITapGestureRecognizer alloc] initWithTarget: self
action:^(id sender) {
}
];
我错过了什么,还是 UIGestureRecognizer 类不支持块?
我们可以将块与手势识别器一起使用吗?看起来并非如此。例如,这不起作用:
UITapGestureRecognizer *tapped = [[UITapGestureRecognizer alloc] initWithTarget: self
action:^(id sender) {
}
];
我错过了什么,还是 UIGestureRecognizer 类不支持块?