如何更改键盘滑入/缩小动画的速度?

时间:2011-02-24 06:56:58

标签: iphone iphone-softkeyboard

我对我的小测试应用程序非常困惑。当我在Textfield上做键盘时,键盘变慢了我想增加键盘时间。任何人都可以告诉我如何增加KeyBoard的上下时间?

1 个答案:

答案 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];
}