Set progress bar for downloading NSData
NSURL *url = [NSURL URLWithString:@"http://i0.kym-cdn.com/entries/icons/original/000/005/545/OpoQQ.jpg?1302279173"]; NSData *data = [NSData dataWithContentsOfURL:url]; imageView.image = [[[UIImage imageWithData:data]; I want to set progress bar while downloading. To give a more detailed example: in your .h file do @interface YourClass : YourSuperclass<NSURLConnectionDataDelegate> in your .m file do @property (nonatomic) NSMutableData *imageData; @property (nonatomic) NSUInteger totalBytes; @property (nonatomic) NSUInteger receivedBytes; And somewhere call NSURL *url = [NSURL URLWithString:@