2

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

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

4

2 回答 2

1

一种方法是使用:

cell.contentView.backgroundColor = [UIColor colorWithPatternImage:@"cellImage.png"];
于 2012-08-22T12:12:06.087 回答
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
 }
于 2012-08-22T12:14:36.040 回答