Guest User

Untitled

a guest
Mar 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #import "ClickableTextField.h"
  2.  
  3. @interface ClickableTextField()
  4.  
  5. @end
  6.  
  7. @implementation ClickableTextField
  8.  
  9. - (void)mouseDown:(NSEvent *)theEvent
  10. {
  11. [self sendAction:[self action] to:[self target]];
  12. }
  13.  
  14. @end
Add Comment
Please, Sign In to add comment