SDWebImage/UIImageView+WebCache.h

21 lines
658 B
C
Raw Normal View History

2009-09-20 04:24:03 +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.
*/
2009-09-20 02:45:42 +08:00
2011-03-15 21:05:49 +08:00
#import "SDWebImageCompat.h"
#import "SDWebImageManagerDelegate.h"
#import "SDWebImageManager.h"
2009-09-20 02:45:42 +08:00
@interface UIImageView (WebCache) <SDWebImageManagerDelegate>
2009-09-20 02:45:42 +08:00
- (void)setImageWithURL:(NSURL *)url;
- (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder;
- (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
@end