The iOS framework that grows only as fast as its documentation
<NINetworkImageViewDelegate> Protocol Reference

Overview

The image view delegate used to inform of state changes.

Tasks

(void) - networkImageViewDidStartLoad:
 
(void) - networkImageView:didLoadImage:
 
(void) - networkImageView:didFailWithError:
 
(void) - networkImageView:readBytes:totalBytes:
 

Method Documentation

networkImageViewDidStartLoad:

The image has begun an asynchronous download of the image.

- (void)networkImageViewDidStartLoad:(NINetworkImageView *)imageView;

networkImageView:didLoadImage:

The image has completed an asynchronous download of the image.

- (void)networkImageView:(NINetworkImageView *)imageView didLoadImage:(UIImage *)image;

networkImageView:didFailWithError:

The asynchronous download failed.

- (void)networkImageView:(NINetworkImageView *)imageView didFailWithError:(NSError *)error;

networkImageView:readBytes:totalBytes:

The progress of the download.

- (void)networkImageView:(NINetworkImageView *)imageView readBytes:(long long)readBytes totalBytes:(long long)totalBytes;