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