Guest User

Untitled

a guest
Jul 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. UISwipeGestureRecognizer *swipe = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(imageSwiped:)];
  2. swipe.direction = UISwipeGestureRecognizerDirectionRight;
  3. [imageView addGestureRecognizer:swipe];
  4. [swipe release];
Add Comment
Please, Sign In to add comment