Skip to content

Instantly share code, notes, and snippets.

@mikeyk
Created September 8, 2011 23:31
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeyk/1205091 to your computer and use it in GitHub Desktop.
Save mikeyk/1205091 to your computer and use it in GitHub Desktop.
Get keyboard height from an NSNotification
@implementation NSNotification (KeyboardHeight)
- (CGFloat)keyboardHeight {
CGRect bounds;
NSValue *boundsValue = [self.userInfo objectForKey:UIKeyboardBoundsUserInfoKey];
if (boundsValue) {
[boundsValue getValue:&bounds];
return bounds.size.height;
} else {
return 0;
}
}
@end
@implementation NSNotification (KeyboardHeight)
- (CGFloat)keyboardHeight {
CGRect bounds;
NSValue *boundsValue = [self.userInfo objectForKey:UIKeyboardBoundsUserInfoKey];
if (boundsValue) {
[boundsValue getValue:&bounds];
return bounds.size.height;
} else {
return 0;
}
}
@end
@implementation NSNotification (KeyboardHeight)
- (CGFloat)keyboardHeight {
CGRect startFrame;
NSValue *startFrameValue = [self.userInfo objectForKey:UIKeyboardFrameBeginUserInfoKey];
if (startFrameValue) {
[startFrameValue getValue:&startFrame];
return startFrame.size.height;
} else {
return 0;
}
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment