我对我的小测试应用程序非常困惑。当我在Textfield上做键盘时,键盘变慢了我想增加键盘时间。任何人都可以告诉我如何增加KeyBoard的上下时间?
答案 0 :(得分:1)
系统键盘的速度可以通过UIKeyboardAnimationDurationUserInfoKey
检索并且是只读的。
更新:如何获取值。在通知监听器中:
- (void)keyboardWillShow:(NSNotification*)notification
{
NSDictionary* userInfo = [notification userInfo];
NSTimeInterval animationDuration;
UIViewAnimationCurve animationCurve;
[[userInfo objectForKey:UIKeyboardAnimationCurveUserInfoKey] getValue:&animationCurve];
[[userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey] getValue:&animationDuration];
}