您好,我有一个表格单元格,其中包含一个 UIImageView。我想让这个 UIImageView 有一个圆角。这是我拥有的代码(相关片段):
UIImageView* image;
image = (UIImageView*)[cell viewWithTag:0]; // get the UIImageView from the nib
image.image = [UIImage imageWithData:imageData]; // imagedata contains the image
image.layer.cornerRadius = 10.0;
image.layer.masksToBounds = YES;
image.clipsToBounds = YES;
当我这样做时,整个 UITableViewCell 得到圆角,而不是 UIImageView (见附图)。
有人能告诉我为什么圆角应用于表格单元格而不是 uiImageView 吗?