任何人都可以提供我在uitableview中加载自定义单元格的教程。我在申请中需要这个。请帮帮我。
答案 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;
}