当键盘抬起时在滚动视图中滚动(就像在 Notes 应用程序 iOS 中一样)

发布于 2024-11-24 02:36:21 字数 127 浏览 2 评论 0原文

当键盘出现时,我可以取消隐藏我的文本字段,但现在的问题是,我希望用户能够在视图中滚动并看到文本字段上方的其他内容,即使键盘打开时也是如此。就像您可以在笔记应用程序中执行此操作一样,即使键盘弹起,您也可以在笔记中滚动。

谢谢!

I could unhide my text field when the keyboard comes up, but the problem now is that I want the user to be able scroll in the view and see other stuff which was above the text field even when the keyboard is up. Just like you can do it in the notes application, you can scroll in the notes even when the keyboard up.

Thanks!

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

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

发布评论

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

评论(2

阿楠 2024-12-01 02:36:21

您有两种解决方案:

• 调整scrollView 框架的大小,使其高度适合您的键盘。

• 更改scrollView 的contentOffset。

You have two solutions :

• Resize the frame of your scrollView with a height that's perfectly to your keyboard.

• Change the contentOffset of your scrollView.

澜川若宁 2024-12-01 02:36:21

注册 UIKeyboardWillShowNotificationUIKeyboardWillHideNotification,获取键盘大小和动画速度并调整滚动视图的大小。

Register for UIKeyboardWillShowNotification and UIKeyboardWillHideNotification, get the keyboard size and animation speed and resize the scroll view.

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