Skip to content

Instantly share code, notes, and snippets.

@joaofranca
Created July 5, 2012 00:25
Show Gist options
  • Save joaofranca/3050274 to your computer and use it in GitHub Desktop.
Save joaofranca/3050274 to your computer and use it in GitHub Desktop.
- (void) keyboardDidShow:(NSNotification *)nsNotification {
NSDictionary * userInfo = [nsNotification userInfo];
CGSize kbSize = [[userInfo objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
CGRect newFrame = [table frame];
CGFloat kHeight = kbSize.height;
if(UIInterfaceOrientationIsLandscape([UIApplication sharedApplication].statusBarOrientation)){
kHeight = kbSize.width;
}
newFrame.size.height -= kHeight;
[table setFrame:newFrame];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment