从图库导入照片时,我需要裁剪圆圈,就像在股票联系人应用中一样。我找到了一些解决方案,但所有解决方案都在Objective-C中。我发现它们很难翻译。有人知道有用的Swift库吗?

最佳答案

这对我有用

    profileImage.image = UIImageVar
    profileImage.layer.borderWidth = 1
    profileImage.layer.borderColor = UIColor.blackColor().CGColor
    profileImage.layer.cornerRadius = profileImage.frame.height/2
    profileImage.clipsToBounds = true

10-05 21:11