| 123456789101112131415161718192021222324252627282930313233 |
- //
- // SWLongPressGestureRecognizer.m
- // SWTableViewCell
- //
- // Created by Matt Bowman on 11/27/13.
- // Copyright (c) 2013 Chris Wendel. All rights reserved.
- //
- #import "SWLongPressGestureRecognizer.h"
- @implementation SWLongPressGestureRecognizer
- -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
- {
- [super touchesBegan:touches withEvent:event];
- }
- -(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
- {
- [super touchesMoved:touches withEvent:event];
-
- self.state = UIGestureRecognizerStateFailed;
- }
- -(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
- {
- [super touchesEnded:touches withEvent:event];
-
- self.state = UIGestureRecognizerStateFailed;
- }
- @end
|