细胞背景图像模式

时间:2015-06-12 03:09:04

标签: ios objective-c uitableview

我在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"]];

}

那么如何编辑我的代码来添加我需要的东西呢?感谢

1 个答案:

答案 0 :(得分:1)

您可以设置单元格图层的contents,试试这个:

cell.layer.contents = (id)[UIImage imageNamed:@"homeScreen-buttons.jpg"].CGImage;