固定UITableViewCell的高度

时间:2011-06-11 23:00:11

标签: iphone uitableview height

我有一个UITableView,我希望每个单元格都是50px的固定高度,如何在Xcode4中完成?

继承我的tableview,从XIB文件加载

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }

1 个答案:

答案 0 :(得分:6)

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