iPhone:UITableViewCell:单元格携带背景色条

时间:2010-08-10 05:51:51

标签: iphone ios-simulator

当我使用

self.view.backgroundColor = [UIColor colorWithPatternImage: 
                                     [UIImage imageNamed:@"image_name.png"]];  

单元格带有图像的底部,看起来像条带上的条带

1 个答案:

答案 0 :(得分:0)

使用以下方法将单元格高度设置为与图像高度完全相同:

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

此外,您可能希望使用以下代码删除分隔符,具体取决于图像的外观:

MyTableName.separatorStyle = UITableViewCellSeparatorStyleNone;