我在UITableView
中有一个单元格,其中使用colorWithPatternImage
将图像作为背景。我想在这个图像上设置一个模式以适应单元格,即UIViewContentModeScaleAspectFill
等等(我将通过并找到最适合我使用的模式)
这是我的代码:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath
*)indexPath
{
if((indexPath.row)==1)
cell.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"homeScreen-buttons.jpg"]];
}
那么如何编辑我的代码来添加我需要的东西呢?感谢
答案 0 :(得分:1)
您可以设置单元格图层的contents
,试试这个:
cell.layer.contents = (id)[UIImage imageNamed:@"homeScreen-buttons.jpg"].CGImage;