2009-09-20 04:24:03 +08:00
|
|
|
/*
|
2009-09-22 01:34:32 +08:00
|
|
|
* This file is part of the SDWebImage package.
|
|
|
|
* (c) Olivier Poitrey <rs@dailymotion.com>
|
2009-09-20 04:24:03 +08:00
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
2010-06-02 07:37:39 +08:00
|
|
|
*/
|
2009-09-20 02:45:42 +08:00
|
|
|
|
2011-03-15 21:05:49 +08:00
|
|
|
#import "SDWebImageCompat.h"
|
2009-09-29 05:56:24 +08:00
|
|
|
#import "SDWebImageManagerDelegate.h"
|
2011-10-03 21:52:56 +08:00
|
|
|
#import "SDWebImageManager.h"
|
2009-09-20 02:45:42 +08:00
|
|
|
|
2009-09-24 05:22:48 +08:00
|
|
|
@interface UIImageView (WebCache) <SDWebImageManagerDelegate>
|
2009-09-20 02:45:42 +08:00
|
|
|
|
|
|
|
- (void)setImageWithURL:(NSURL *)url;
|
2009-09-24 05:22:48 +08:00
|
|
|
- (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder;
|
2011-10-03 21:52:56 +08:00
|
|
|
- (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options;
|
2010-06-11 22:32:35 +08:00
|
|
|
- (void)cancelCurrentImageLoad;
|
2009-09-20 02:45:42 +08:00
|
|
|
|
2009-09-23 09:05:40 +08:00
|
|
|
@end
|