我在我的swift 3.0.1
項目中使用SDWebImage
xcode 8.1
。 我能夠從遠程URL下載圖像,並在tableview
的動態cell
的圖像視圖中顯示。TableView中的SDWebImage向上滾動
當我在tableview
中向上滾動時,會出現問題,圖像縮小。
我在我的swift 3.0.1
項目中使用SDWebImage
xcode 8.1
。 我能夠從遠程URL下載圖像,並在tableview
的動態cell
的圖像視圖中顯示。TableView中的SDWebImage向上滾動
當我在tableview
中向上滾動時,會出現問題,圖像縮小。
我用這個代碼和它爲我工作。
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cellId:String = "cellid"
let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath) as! customcell
let strUrlProfilepic = your image url path
self.yourImageView.af_setImage(withURL: strUrlProfilepic, placeholderImage: UIImage(named: "PlaceholderImage.jpeg"))
return cell
}
我使用了上面的代碼.. self.yourImageView.af_setImage(withURL:strUrlProfilepic,placeholderImage:UIImage(named:「PlaceholderImage.jpeg」))。現在正在工作。 – Rupesh
如果我的回答對你有幫助,則接受我的回答。謝謝 –
你能分享一下你的代碼嗎?一塊代碼將是非常有用的 –