我试图在我的Three20应用程序中继承TTTableViewCell,我想改变单元格的高度。但是,我遇到了重大问题。
我正在使用self.variableHeightRows = YES
;在调用我的TTTableViewCell类的类中。
有谁知道如何改变细胞的高度?这方面的文件几乎为零。
非常感谢, 布雷特
答案 0 :(得分:1)
在TTTableViewCell的子类中重写此方法:
+ (CGFloat)tableView:(UITableView*)tableView rowHeightForObject:(id)object {
return 0; // Your value here
}
答案 1 :(得分:0)
我从未使用过TTTableViewCell,但是对于UITableViewDelegate中UITableView中包含的常规单元格,您可以实现该方法
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath