Tuesday, August 6, 2013

How to improve the iOS table view image loading performance – Method 2 (AFNetworking)

Previously, I talked about a method using GDC. Today, I’m going to talk about another simple method using the AFNetworking. You can download the AFNetworking from this link 

If you are using a your own custom cell, import "UIImageView+AFNetworking.h" herder file to your custom cell. Or if you are not using a custom cell, import that herder file to your table view.

Here, we call setImageWithURL method, which returns an image view. This method accepts NSURL, so we need to convert our string URL to NSURL. Also I have added a placeholder image. So this placeholder image will load until the real image loads.

No comments:

Post a Comment