正如您在第一张图片中看到的那样。中无文字可见UITableviewCell
。滚动后它会出现并调整单元格的大小。我想根据UIImage
. 我正在使用SDWebImage
. 我将我在 UITableView Cell 中为 row 方法完成的代码。
cell.imgViewSlide.sd_setImage(with: URL(string:
self.arrSliderImage[indexPath.row]), placeholderImage: UIImage(named: "HomeSliderImage"), options: .continueInBackground) { (image, error, type, url) in
let screenBounds = UIScreen.main.bounds
let pixelWidth = Int((image?.size.width)!)
let pixelHeight = Int((image?.size.height)!)
let height = ((pixelHeight * Int(screenBounds.width)) / pixelWidth)
cell.heightImage.constant = CGFloat(integerLiteral: height)
}
我已经应用了很多解决方案,但无法正常工作。