You should use lazy loading of image in your cells. The slowness or stuck is happening because you are fetching the image (..ie a network activity) in your main thread or the UI thread.
You can get a lot of tutorial in net for loading images async.
Here is a tutorial from Apple : link