微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Swift:图像视图显示错误

如何解决Swift:图像视图显示错误

我有 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(自定义类的属性)而不是 imageViewUITableViewCell 类的属性)

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 解决了这个问题。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。