如何在uitableview中加载自定义单元格

时间:2012-12-28 11:19:08

标签: ios

任何人都可以提供我在uitableview中加载自定义单元格的教程。我在申请中需要这个。请帮帮我。

2 个答案:

答案 0 :(得分:0)

sample tutorial可能有所帮助。其中一种方法是扩展UITableViewCell类并为自定义单元格使用自定义.XIB。嗯,这是一般的想法。

答案 1 :(得分:0)

尝试以下代码

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

    static NSString *CellIdentifier = @"MyCellIdentifier";



    SPHTableCell *cell = (SPHTableCell *)[data_Table dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[SPHTableCell alloc] initWithStyle:UITableViewCellStyleDefault
                                                reuseIdentifier:CellIdentifier];
    }

    return cell;
}