测试已测试 | ✗ |
语言语言 | Obj-CObjective C |
许可证 | MIT |
发布最后发布 | 2014年12月 |
由Bryan Irace维护。
一个用于解析键盘通知中有用部分的功能。
- (void)keyboardWillShow:(NSNotification *)notification {
BRYParseKeyboardNotification(notification, ^(NSTimeInterval keyboardAnimationDuration, CGFloat keyboardHeight, UIViewAnimationOptions keyboardAnimationOptions) {
[UIView animateWithDuration:keyboardAnimationDuration delay:0 options:keyboardAnimationOptions animations:^{
someView.frameHeight -= keyboardHeight;
}];
});
}
MIT 许可下可用:http://bryan.mit-license.org