如何增加iPhone表格视图中单元格的高度?
我是 iPhone 开发新手。我正在解析 xml 文件并在表格的每一行中显示标题、日期、视图和摘要。摘要的内容很大,因此单元格中只显示前 3 个单词。如何我相对于内容的长度增加了行的高度。所有内容都应正确适合单元格,并且应显示完整内容。请帮助我。谢谢。
I am new to iphone development.I am parsing a xml file and displaying the title, date, view and summary in each row of a table.The contents of summar is big ,so only first 3 words are displayed in the cell.How can i increase the height of the row with respect to the length of the contents.All the content should fit properly inside the cell and full content should be displayed.Please help me out.Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以在 tableView.delegate/datasource 中执行此操作:
但这确实会降低滚动性能。理想情况下,您应该使用 tableview.rowHeight 将所有行的行高设置为相同。
You can do this in your tableView.delegate/datasource:
This does however slow down scroll performance. Ideally you should set the row height for all rows to be identical using
tableview.rowHeight
.如果一个视图控制器中有多个表视图,则可以按照以下方法对每个不同的表视图执行操作。
if you have multiple tableview in one view controller, you can do for each different table view as a below method.
一种方法是手动设置单元格的大小。只需将 ROW_HEIGHT 替换为合适的值即可。
One way to do it is to manually set the size of the cell. Just replace ROW_HEIGHT with something suitable.
尝试使用此委托,它根据单元格的内容自动管理。
Try using this Delegates which automatically manages according to the content of the cell.