我想知道,是否可以与边框同时加载图像?例如,我有所有帖子的单元格。当用户发布图片时,边框在图片本身之前。
像这样我在里面设置图像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
}