如何制作可扩展的表格视图单元格?
我想要一个表格视图单元格,当您点击它时,它的高度会增加以显示一些描述文本。当您再次点击它时,它会切换回较低的版本。这可能吗?如果可能的话,我将如何实现它?提前致谢
I would like a table view cell which when you tap it grows in height to reveal some description text. When you tap it again it toggles back to the less tall version. Is this possible, and if so how would I accomplish it? Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
--
当
用户点击一行时,在数组中的某处设置新的行高,然后调用 tableview reload 来重绘。它将调用 cellForRowAtIndexPath,并且由于您知道哪个单元格具有较大的高度,因此您返回该行的较大单元格,并且 heightForRowAtIndexPath 将确保其正确显示。
Use
--
In
when the user taps on a row, set the new row height in an array somewhere, then call tableview reload to redraw. It will call cellForRowAtIndexPath and since you know which cell has a large height, you return the larger cell for that row, and heightForRowAtIndexPath will ensure it is displayed correctly.