我有一个带有图像视图的UITableViewCell,我想将图像裁剪成圆圈。我目前在单元的初始化中有以下内容:
- (void)awakeFromNib
{
// Initialization code
//make profile image circular
self.profileImage.layer.cornerRadius = self.profileImage.frame.size.width / 2;
self.profileImage.layer.masksToBounds = YES;
self.profileImage.layer.borderWidth = 0;
}
然而,图像最终看起来像
如何让它看起来像一个圆圈?如果我使角半径更小,图像看起来更圆,但每个人似乎都建议宽度/ 2。