iOS 上键盘动画所需的时间

发布于 2024-11-07 07:36:40 字数 124 浏览 1 评论 0原文

根据我的观察以及人们在 www 上的言论,我知道键盘需要接近 0.3 秒的时间才能出现在 iPhone 上。我已将“场移动偏离路线”动画设置为 0.3 秒,效果良好。

但是系统中是否有一个常量可以用来代替这个硬编码值?

I know from what I have observed, and from what people are saying on the www, that the keyboard takes close to 0.3 seconds to appear on the iPhone. I have set my 'field-moving-out-of-the-way' animations to 0.3s, and they work well.

But is there a constant somewhere in the system that I can use instead of this hard-coded value?

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

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

发布评论

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

评论(1

空城仅有旧梦在 2024-11-14 07:36:40
double animationDuration;
animationDuration = [[[notification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue];

你是这个意思吗?

double animationDuration;
animationDuration = [[[notification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue];

is that what you mean?

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