如何手动设置UITableViewCell?

时间:2011-03-25 15:17:56

标签: uitableview

我为我的单元格创建了UITableVewCell子类,我希望将单元格的高度设置为70px。这是可能的?我怎么能这样做?

2 个答案:

答案 0 :(得分:1)

我找到了解决方案;

- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 70;
}

答案 1 :(得分:0)

你需要使用UITableView的Delegate方法,同样也有很多方法用于其他目的。

- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {

    return 70;
}

有关详细信息,请访问以下链接:

http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableViewDelegate_Protocol/Reference/Reference.html#//apple_ref/doc/uid/TP40006942-CH3-DontLinkElementID_3