iOS Clean corners for rounded profile image

前端 未结 3 593
野趣味
野趣味 2020-12-20 02:28

So I followed an AppCoda tutorial on rounding the corners of a profile image, and it worked fine, except for one thing. Wherever the image was rounded, there is a bit of bl

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-20 03:14

    You can also add a mask which is inset a little, if you want:

    let path = UIBezierPath(roundedRect: CGRectInset(imageView.bounds, 0.5, 0.5), cornerRadius: 10.0)
    let mask = CAShapeLayer()
    mask.path = path.CGPath
    imageview.layer.mask = mask
    

提交回复
热议问题