Guest User

Untitled

a guest
Apr 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. //实例化长按手势监听
  2. UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(btnLong:)];
  3.  
  4. //代理
  5. longPress.delegate = self;
  6. longPress.minimumPressDuration = 0.5;
  7.  
  8. [self.label_num addGestureRecognizer:longPress];
Add Comment
Please, Sign In to add comment