Can we use blocks with Gesture Recognizers? It doesn't appear so. For example, this does not work:
UITapGestureRecognizer *tapped = [[UITapGestureRecognizer alloc] initWithTarget: self
action:^(id sender) {
}
];
Am I missing something, or are blocks just not supported by the UIGestureRecognizer class?