Skip to content

Instantly share code, notes, and snippets.

@onmyway133
Created August 13, 2014 14:47
Show Gist options
  • Save onmyway133/66d13674785cce401794 to your computer and use it in GitHub Desktop.
Save onmyway133/66d13674785cce401794 to your computer and use it in GitHub Desktop.
Keyboard frame convert
// http://stackoverflow.com/questions/9746417/keyboard-willshow-and-willhide-vs-rotation/14351009#14351009
- (void) keyboardWillShow:(NSNotification *)aNotification
{
CGRect keyboardFrame = [[[aNotification userInfo] objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue];
CGRect convertedFrame = [self.view convertRect:keyboardFrame fromView:self.view.window];
......
/* Do whatever you want now with the new frame.
* The width and height will actually be correct now
*/
......
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment