Hello I am trying to get profile image of facebook user in Table\'s cell.image. But It slows down Scrolling of Table view.Then I used Asynchronous loading of image link But
Its slows down because you are setting the image every time the cellForRowAtIndexPath: is called. Add the image to the cell's imageView only inside the if (cell == nil) block. Then you will see the improvement in scrolling.