I got an error. "No visible interface for UISwipeGestureRecognizer declares the selector 'touchesMoved:withEvent:'"
I looked at documentation and found touchesMoved:withEvent at UIGestureRecognizer class. How do I solve this error?
@interface MySwipeRecognizer : UISwipeGestureRecognizer
@implementation MySwipeRecognizer
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesMoved:touches withEvent:event];
}
@end