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

发布于 2024-10-19 12:26:31 字数 74 浏览 3 评论 0原文

我对我的小测试应用程序感到非常困惑。当我在文本字段上执行操作时,键盘来得很慢,我想增加键盘时间。有人能告诉我如何增加键盘上下的时间吗?

I am very confuse with my small test app.When i do on the Textfield the keyboard comes slowly I want to increase the keyboard time.Can anybody tell me that how i can increase the time of KeyBoard up and down?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

豆芽 2024-10-26 12:26:31

系统键盘的速度可以通过 UIKeyboardAnimationDurationUserInfoKey 检索,并且是只读的。

更新:如何获取值。在通知监听器中:

- (void)keyboardWillShow:(NSNotification*)notification 
{
    NSDictionary* userInfo = [notification userInfo];
    NSTimeInterval animationDuration;
    UIViewAnimationCurve animationCurve;

    [[userInfo objectForKey:UIKeyboardAnimationCurveUserInfoKey] getValue:&animationCurve];
    [[userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey] getValue:&animationDuration];
}

The speed of the system keyboard can be retrieved via the UIKeyboardAnimationDurationUserInfoKey and is read-only.

UPDATE: How to get the values. In the notification listener:

- (void)keyboardWillShow:(NSNotification*)notification 
{
    NSDictionary* userInfo = [notification userInfo];
    NSTimeInterval animationDuration;
    UIViewAnimationCurve animationCurve;

    [[userInfo objectForKey:UIKeyboardAnimationCurveUserInfoKey] getValue:&animationCurve];
    [[userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey] getValue:&animationDuration];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文