Skip to content

Instantly share code, notes, and snippets.

View soberman's full-sized avatar

Yarik Arsenkin soberman

View GitHub Profile
@soberman
soberman / keyboardHeight.m
Last active August 29, 2015 14:27
How to get iOS keyboard height programmatically
- (void)viewDidLoad {
[super viewDidLoad];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillShow:)
name:UIKeyboardWillChangeFrameNotification
object:nil];
}
- (void)keyboardWillShow:(NSNotification *)notification {