2017-02-09 75 views
0

我在我的swift 3.0.1項目中使用SDWebImagexcode 8.1。 我能夠從遠程URL下載圖像,並在tableview的動態cell的圖像視圖中顯示。TableView中的SDWebImage向上滾動

當我在tableview中向上滾動時,會出現問題,圖像縮小。

+0

你能分享一下你的代碼嗎?一塊代碼將是非常有用的 –

回答

0

我用這個代碼和它爲我工作。

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 
     } 
+0

我使用了上面的代碼.. self.yourImageView.af_setImage(withURL:strUrlProfilepic,placeholderImage:UIImage(named:「PlaceholderImage.jpeg」))。現在正在工作。 – Rupesh

+0

如果我的回答對你有幫助,則接受我的回答。謝謝 –