UITableView - 扩展单元格

时间:2011-11-23 09:06:26

标签: iphone objective-c ios uitableview

我设法扩展我的单元格(经过多次尝试),就像我在我的照片中看到的那样。 enter image description here

但我真正想要的是这样的:

enter image description here

正如您所看到的,当用户点击描述时,单元格展开显示内容: enter image description here

请有人告诉我在哪里可以找到所有信息。 (我努力找到它们)。非常感谢!!!!!!

2 个答案:

答案 0 :(得分:4)

您可以在应用中尝试使用Apple的源代码 - http://developer.apple.com/library/ios/#samplecode/TableViewUpdates/Introduction/Intro.html

或者你可以放弃这个博客 -

http://www.cocoanetics.com/2011/03/expandingcollapsing-tableview-sections/

您需要根据需要添加自定义UITableViewCell设计。

答案 1 :(得分:0)

更改tableView:heightForCellAtIndexPath:中单元格的高度,更改tableView:cellForRowAtIndexPath:中的单元格布局并调用[[self tableView] reloadData];