标签: ios objective-c uitableview custom-cell heightforrowatindexpath
我有一个自定义单元格。它是UILabel。我可以通过heightForRow...调整标签高度,而不是cellForRow...吗?
UILabel
heightForRow...
cellForRow...
答案 0 :(得分:0)
没有。在heightForRowAtIndexPath:中还没有单元格,也没有子视图。
heightForRowAtIndexPath:
所有更改都应该在cellForRowAtIndexPath:中进行(1),或者在UITableViewCell的子类中进行(2)。
cellForRowAtIndexPath:
UITableViewCell