I\'m loading the images from URL in UITableView. But it\'s very slow when loading an view. Here\'s an example,
UIImage *image = nil; image = [UIImage imageW
Try to implement AFNetworking. It uses async requests to download the image, you are currently blocking your view with every download.
You can then use an AFImageRequestOperation to download your image.