问题描述
我有 UIImageView
的约束看起来像图片
TableviewCell
但是当从数组数据设置图像时,显示错误(在imageView之外) Image display wrong
我已经在 tableView 中设置了
cell.imgView.contentMode = .scaleAspectFill
cell.imgView.clipsToBounds = true
if self.arrDulieu[indexPath.row].attachment?.count ?? 0 > 0 {
cell.imageView!.image = UIImage(data: self.arrDulieu[indexPath.row].attachment![0])
}
解决方法
它应该是 imgView
(自定义类的属性)而不是 imageView
(UITableViewCell
类的属性)
cell.imgView.image = UIImage(data: self.arrDulieu[indexPath.row].attachment![0])
,
尝试在主线程上设置图像
DispatchQueue.main.async {
if self.arrDulieu[indexPath.row].attachment?.count ?? 0 > 0 {
cell.imageView!.image = UIImage(data: self.arrDulieu[indexPath.row].attachment![0])
}
}
,
如果您使用故事板,请检查您的约束。 如果仍然遇到问题,请发布您的完整代码,以便正确理解问题。 谢谢!
@Sh_Khan 解决了这个问题。