同时加载带边框的图像

时间:2016-10-16 14:32:15

标签: swift kingfisher

我想知道,是否可以在边框的同时加载图片?例如,我有单元格所有帖子。当用户发布图片时,边框就在图片本身之前。

像这样我在cellForRowAtIndexPath内设置了图片:

cell.feedImageView.kf.indicatorType = .activity
let url = URL(string: postsArray[indexPath.row].postImageUrl)
cell.feedImageView.kf.setImage(with: url)

并且像这样我设置了一些外观:

func updateUICell(imageView: UIImageView, radius: CGFloat) {
        imageView.layoutIfNeeded()
        // corner radius
        imageView.layer.cornerRadius = radius

        // border
        imageView.layer.borderWidth = 2.0
        imageView.layer.borderColor = UIColor.white.cgColor


        imageView.layer.masksToBounds = true
    }

0 个答案:

没有答案