Skip to content

Instantly share code, notes, and snippets.

@123nobody
Last active July 25, 2016 21:44
Show Gist options
  • Save 123nobody/9971951 to your computer and use it in GitHub Desktop.
Save 123nobody/9971951 to your computer and use it in GitHub Desktop.
- (void)keyboardWillShow:(NSNotification *)notification
{
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:[notification.userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue]];
[UIView setAnimationCurve:[notification.userInfo[UIKeyboardAnimationCurveUserInfoKey] integerValue]];
[UIView setAnimationBeginsFromCurrentState:YES];
// do something
[UIView commitAnimations];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment