Search code examples
uitableviewios7uiimageviewxcode-storyboard

How do I refresh my UITableviewCell after downloading an image from the background


I have this code: https://gist.github.com/anonymous/9700869

Now my questions would be how to refresh the table after the image has been downloaded? Right now the images are not displaying initially, and I have to click on the row before the image appears:

https://i.sstatic.net/6QgS0.jpg

and

https://i.sstatic.net/kUCUF.jpg

Second, I have limit the size of my cell row height to 70:

https://i.sstatic.net/r3tYP.jpg

somehow at runtime the row height increases. Please see 2nd image above showing the image

Thanks in advance.

Richard


Solution

  • Okay so to solve my 2nd issue, I set my table view cell row height to default and style to subtile.

    Thanks