2009-09-24 05:22:48 +08:00
|
|
|
/*
|
|
|
|
* This file is part of the SDWebImage package.
|
|
|
|
* (c) Olivier Poitrey <rs@dailymotion.com>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
@class SDWebImageManager;
|
2011-12-05 09:48:58 +08:00
|
|
|
@class UIImage;
|
2009-09-24 05:22:48 +08:00
|
|
|
|
|
|
|
@protocol SDWebImageManagerDelegate <NSObject>
|
|
|
|
|
|
|
|
@optional
|
|
|
|
|
2009-09-29 05:56:24 +08:00
|
|
|
- (void)webImageManager:(SDWebImageManager *)imageManager didFinishWithImage:(UIImage *)image;
|
2011-03-21 23:40:09 +08:00
|
|
|
- (void)webImageManager:(SDWebImageManager *)imageManager didFailWithError:(NSError *)error;
|
2009-09-24 05:22:48 +08:00
|
|
|
|
|
|
|
@end
|