Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. UISwipeGestureRecognizer* swipeUpGestureRecognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeUpFrom:)];
  2. swipeUpGestureRecognizer.direction = UISwipeGestureRecognizerDirectionUp;
  3.  
  4. - (void)handleSwipeUpFrom:(UIGestureRecognizer*)recognizer {
  5.  
  6. }
  7.  
  8. [view addGestureRecognizer:swipeUpGestureRecognizer];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement