MKAnnotationView(WebCache) Category Reference
| Conforms to | SDWebImageManagerDelegate |
| Declared in | MKAnnotationView+WebCache.h MKAnnotationView+WebCache.m |
Overview
Integrates SDWebImage async downloading and caching of remote images with MKAnnotationView.
Tasks
-
– setImageWithURL:Set the imageView
imagewith anurl. -
– setImageWithURL:placeholderImage:Set the imageView
imagewith anurland a placeholder. -
– setImageWithURL:placeholderImage:options:Set the imageView
imagewith anurl, placeholder and custom options. -
– setImageWithURL:success:failure:Set the imageView
imagewith anurl. -
– setImageWithURL:placeholderImage:success:failure:Set the imageView
imagewith anurl, placeholder. -
– setImageWithURL:placeholderImage:options:success:failure:Set the imageView
imagewith anurl, placeholder and custom options. -
– cancelCurrentImageLoadCancel the current download
Instance Methods
cancelCurrentImageLoad
Cancel the current download
- (void)cancelCurrentImageLoadDiscussion
Cancel the current download
Declared In
MKAnnotationView+WebCache.hsetImageWithURL:
Set the imageView image with an url.
- (void)setImageWithURL:(NSURL *)urlParameters
- url
The url for the image.
Discussion
Set the imageView image with an url.
The downloand is asynchronous and cached.
Declared In
MKAnnotationView+WebCache.hsetImageWithURL:placeholderImage:
Set the imageView image with an url and a placeholder.
- (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholderParameters
- url
The url for the image.
- placeholder
The image to be set initially, until the image request finishes.
Discussion
Set the imageView image with an url and a placeholder.
The downloand is asynchronous and cached.
Declared In
MKAnnotationView+WebCache.hsetImageWithURL:placeholderImage:options:
Set the imageView image with an url, placeholder and custom options.
- (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)optionsParameters
- url
The url for the image.
- placeholder
The image to be set initially, until the image request finishes.
- options
The options to use when downloading the image. @see SDWebImageOptions for the possible values.
Discussion
Set the imageView image with an url, placeholder and custom options.
The downloand is asynchronous and cached.
Declared In
MKAnnotationView+WebCache.hsetImageWithURL:placeholderImage:options:success:failure:
Set the imageView image with an url, placeholder and custom options.
- (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options success:(void ( ^ ) ( UIImage *image ))success failure:(void ( ^ ) ( NSError *error ))failureParameters
- url
The url for the image.
- placeholder
The image to be set initially, until the image request finishes.
- options
The options to use when downloading the image. @see SDWebImageOptions for the possible values.
- success
A block to be executed when the image request succeed This block has no return value and takes the retrieved image as argument.
- failure
A block object to be executed when the image request failed. This block has no return value and takes the error object describing the network or parsing error that occurred (may be nil).
Discussion
Set the imageView image with an url, placeholder and custom options.
The downloand is asynchronous and cached.
Declared In
MKAnnotationView+WebCache.hsetImageWithURL:placeholderImage:success:failure:
Set the imageView image with an url, placeholder.
- (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder success:(void ( ^ ) ( UIImage *image ))success failure:(void ( ^ ) ( NSError *error ))failureParameters
- url
The url for the image.
- placeholder
The image to be set initially, until the image request finishes.
- success
A block to be executed when the image request succeed This block has no return value and takes the retrieved image as argument.
- failure
A block object to be executed when the image request failed. This block has no return value and takes the error object describing the network or parsing error that occurred (may be nil).
Discussion
Set the imageView image with an url, placeholder.
The downloand is asynchronous and cached.
Declared In
MKAnnotationView+WebCache.hsetImageWithURL:success:failure:
Set the imageView image with an url.
- (void)setImageWithURL:(NSURL *)url success:(void ( ^ ) ( UIImage *image ))success failure:(void ( ^ ) ( NSError *error ))failureParameters
- url
The url for the image.
- success
A block to be executed when the image request succeed This block has no return value and takes the retrieved image as argument.
- failure
A block object to be executed when the image request failed. This block has no return value and takes the error object describing the network or parsing error that occurred (may be nil).
Discussion
Set the imageView image with an url.
The downloand is asynchronous and cached.
Declared In
MKAnnotationView+WebCache.h