...
|
...
|
@@ -40,7 +40,13 @@ typedef enum |
|
|
*
|
|
|
* Use this flag only if you can't make your URLs static with embeded cache busting parameter.
|
|
|
*/
|
|
|
SDWebImageRefreshCached = 1 << 4
|
|
|
SDWebImageRefreshCached = 1 << 4,
|
|
|
|
|
|
/**
|
|
|
* In iOS 4+, continue the download of the image if the app goes to background. This is achieved by asking the system for
|
|
|
* extra time in background to let the request finish. If the background task expires the operation will be cancelled.
|
|
|
*/
|
|
|
SDWebImageContinueInBackground = 1 << 5
|
|
|
} SDWebImageOptions;
|
|
|
|
|
|
typedef void(^SDWebImageCompletedBlock)(UIImage *image, NSError *error, SDImageCacheType cacheType);
|
...
|
...
|
|