UITextView 到 UITableViewCell
我是菜鸟。我需要将 UITextView 插入到 UITableViewCell 中并动态调整大小,并且我将直接在单元格中键入。请帮我解决这个问题。
I'am noob. I need insert UITextView in to UITableViewCell with dynamic resizing and that i would typing right into cell. Please help me resolve this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用 UITextField 子类化 UITableViewCell:
然后实现:
最后使用您的自定义单元格:
You need to subclass UITableViewCell with a UITextField in it:
And then implement:
And finally use your custom cells on:
这不是标准 UITableView 的设计工作方式。如果您想要实现的话,有一种添加/编辑/删除项目的定义方法。
我建议仔细阅读 iOS 表格视图编程指南(特别是“插入和删除行和节”部分),因为这将使您走上正轨。
当然,如果您确实希望允许用户在单元格中输入内容,您当然可以创建自定义视图等,但作为一个自认的“菜鸟”,我不建议尝试此操作,直到您'对上述方法更有信心等等。
This isn't how the standard UITableView is designed to work. There's a defined way of adding/editing/removing items if that's what you're trying to achieve.
I'd recommend having a good read of the Table View Programming Guide for iOS (specifically the "Inserting and Deleting Rows and Sections" section) as this will put you on the right track.
You could of course create a custom view, etc. if you really want to allow users to type into a cell, but as a self-confessed "noob" I wouldn't recommend attempting this until you're more confident with the above approach, etc.