滚动查看 UITableView 页脚中的文本框
我有一个文本框可以在 UITableView 页脚中输入代码。
当我单击文本框时,会出现键盘,但我不确定如何让 UITableView 滚动以使文本框可见 有
任何代码示例吗?
I have a textbox to enter a code in UITableView footer.
When I click the text box I get the keyboard appearing but I am not sure how I could get the UITableView to scroll so that the text box is visible
Any code sample for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从之前的 SO 问题中得到了这个代码。
Got this code from a previous SO question.
由于页脚无法滚动到表格视图最低点的更高位置,因此您需要将表格视图向上移动以显示文本框。
这里有一篇不错的博文: http://cocoawithlove.com/ 2008/10/sliding-uitextfields-around-to-avoid.html
since the footer cant scroll any higher the the lowest point of the tableview, you will need to move the tableview up to to show the textbox.
There is a nice blogpost here: http://cocoawithlove.com/2008/10/sliding-uitextfields-around-to-avoid.html