如何使用图像填充组tableView单元格

时间:2012-08-22 12:06:46

标签: iphone objective-c ios uitableview

我正在使用组表视图来显示用户设置,我想在其中一个单元格中显示图像。
众所周知,组表视图单元格有圆角,所以我希望我的图像也可以填充整个单元格的相同圆角。

如何设置图像以使用相同的圆角填充单元格? 当我尝试使用单元格的边界设置图像时,它会填充整个矩形(从x = 0)而不是单元格的矩形(单元格的矩形以x偏移开始并具有圆角)

2 个答案:

答案 0 :(得分:1)

其中一种方法是使用:

cell.contentView.backgroundColor = [UIColor colorWithPatternImage:@"cellImage.png"];

答案 1 :(得分:1)

如果你在Cell中有UIImageView,那么你可以这样做,因为每个图层都可以设置一个角半径,这将为你提供你想要的东西:

实施如下:

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    //......
    ///.......
    cell.yourImgView.layer setMasksToBounds:YES];
    cell.yourImgView.layer setCornerRadius:10.0]; //according to your requirement
 }