在iOS中的圆圈内裁剪图像视图 - 角落仍然显示

时间:2014-07-25 00:44:31

标签: ios objective-c uiimageview geometry cornerradius

我有一个带有图像视图的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;   
}

然而,图像最终看起来像

this

如何让它看起来像一个圆圈?如果我使角半径更小,图像看起来更圆,但每个人似乎都建议宽度/ 2。

0 个答案:

没有答案