滚动条隐藏在键盘后面
我有一个带有搜索栏的 UITableViewController
。当我触摸屏幕开始搜索时,我隐藏 UINavigationBar 并显示范围栏搜索以优化空间。
为了使 TableView 不隐藏在键盘和搜索栏后面,我将页眉和页脚及其各自的高度添加到表格中。
一切正常。但滚动条仍然隐藏在搜索栏和键盘后面。
有什么建议来解决这个问题或以其他方式来完成整个机制吗?
I have a UITableViewController
with a search bar. When I touch the screen to start the search, I hide the UINavigationBar
and show the scope bar search to optimize the space.
For the TableView not hide behind the keyboard and search bar, I add header and footer to the table with their respective heights.
Everything working correctly. But the scroll bar is still hiding behind the search bar and keyboard.
Any suggestions to solve this or some other way to do this whole mechanism?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过减去键盘的高度来调整表格视图框架的大小。
Resize the table view's frame by subtracting the height of the keyboard.