当我使用
时self.view.backgroundColor = [UIColor colorWithPatternImage:
[UIImage imageNamed:@"image_name.png"]];
单元格带有图像的底部,看起来像条带上的条带
答案 0 :(得分:0)
使用以下方法将单元格高度设置为与图像高度完全相同:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
此外,您可能希望使用以下代码删除分隔符,具体取决于图像的外观:
MyTableName.separatorStyle = UITableViewCellSeparatorStyleNone;