Iphone 表格单元尺寸
我在表格视图中使用自定义单元格。我设置了单元格的高度,但只有表中的第 10 个单元格需要调整大小。
I'm using custom cells in my table view. I have the height of the cells set but for only the 10th cell in the table I need to resize.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要实现
UITableViewDelegate
方法heightForRowAtIndexPath:
如下所示:
You need to implement the
UITableViewDelegate
methodheightForRowAtIndexPath:
Something like this: