Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. -(BOOL)textFieldShouldBeginEditing:(UITextField *)textField {
  2.  
  3. dispatch_async(dispatch_get_main_queue(), ^{
  4. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
  5. });
  6.  
  7. return YES;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement