こんにちは、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;
これを行うと、UIImageView ではなく、UITableViewCell 全体の角が丸くなります (添付の画像を参照)。
丸みを帯びた角が uiImageView ではなくテーブル セルに適用される理由を教えてもらえますか?