Guest User

Untitled

a guest
Apr 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. @property (weak, nonatomic) IBOutlet UILabel *label;
  2.  
  3.  
  4.  
  5. - (void)viewDidLoad
  6. {
  7. UITapGestureRecognizer *gesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(hoge)];
  8. label.userInteractionEnabled = YES;
  9. [label addGestureRecognizer:gesture];
  10. }
  11.  
  12. -(void)hoge
  13. {
  14. NSLog(@"hoge");
  15. }
Add Comment
Please, Sign In to add comment