iOS 制作圆形头像

 self.iconImageView.layer.masksToBounds = YES;

 self.iconImageView.layer.cornerRadius = CGRectGetHeight(_iconImageView.bounds)/2;


注意这里的ImageView 的宽和高都要相等

layer.cornerRadiu 设置的是圆角的半径

属性border 添加一个镶边

self.iconImageView.layer.borderWidth = 0.5f;

 

self.iconImageView.layer.borderColor = [[UIColor lightGrayColor] CGColor];

你可能感兴趣的:(UIView,ios开发)