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.
|
|
|
|
*/
|
2009-09-20 02:45:42 +08:00
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2009-09-24 05:22:48 +08:00
|
|
|
#import "SDWebImageHelperDelegate.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;
|
2009-09-20 02:45:42 +08:00
|
|
|
|
2009-09-23 09:05:40 +08:00
|
|
|
@end
|