I am implementing a UITableView with custom UITableViewCell. There is UIImageView there for displaying some image. But the api I am given , does not contain the download links of the images that I'll have to show in each UITableViewCell. For getting the images , I'll need to call another GET request that returns byte array stream of the image to be shown on the corresponding Cell.
I know , I can make an Image from NSData coming from the api. But I am not sure how much efficient idea that would be , I am worrying about memory and performance issue. And I want to do asynchronous loading in UITableViewCell and image cacheing also so that It take less time in later calls. So , what can be a efficient approach here ? And also some suggestion about any good library that can help me doing this would be great.