Skip to content

irace/BRYParseKeyboardNotification

Repository files navigation

BRYParseKeyboardNotification

A function that parses the useful parts out of a keyboard will appear/disappear notification.

Installation

Via CocoaPods, of course:

pod "BRYParseKeyboardNotification"

Usage

- (void)keyboardWillShow:(NSNotification *)notification {
    BRYParseKeyboardNotification(notification, ^(NSTimeInterval keyboardAnimationDuration, CGFloat keyboardHeight, UIViewAnimationOptions keyboardAnimationOptions) {
        [UIView animateWithDuration:keyboardAnimationDuration delay:0 options:keyboardAnimationOptions animations:^{
            someView.frameHeight -= keyboardHeight;
        }];
    });
}

License

Available for use under the MIT license: http://bryan.mit-license.org

About

Parses the useful parts out of a keyboard will show/hide notification

Resources

License

Stars

Watchers

Forks

Packages

No packages published