ASNetworkImageNodeDelegate Protocol Reference

Conforms to NSObject
Declared in ASNetworkImageNode.h

Overview

The methods declared by the ASNetworkImageNodeDelegate protocol allow the adopting delegate to respond to notifications such as fininished decoding and downloading an image.

– imageNode:didLoadImage: required method

Notification that the image node finished downloading an image.

- (void)imageNode:(ASNetworkImageNode *)imageNode didLoadImage:(UIImage *)image

Parameters

imageNode

The sender.

image

The newly-loaded image.

Discussion

Called on a background queue.

Declared In

ASNetworkImageNode.h

– imageNodeDidFinishDecoding:

Notification that the image node finished decoding an image.

- (void)imageNodeDidFinishDecoding:(ASNetworkImageNode *)imageNode

Parameters

imageNode

The sender.

Declared In

ASNetworkImageNode.h