Update the comments
This commit is contained in:
parent
49acbdf9a9
commit
a2eb8958ab
|
@ -11,7 +11,14 @@
|
|||
#import "SDWebImageOperation.h"
|
||||
|
||||
typedef NS_OPTIONS(NSUInteger, SDWebImageDownloaderOptions) {
|
||||
/**
|
||||
* Put the download in the low queue priority and task priority.
|
||||
*/
|
||||
SDWebImageDownloaderLowPriority = 1 << 0,
|
||||
|
||||
/**
|
||||
* This flag enables progressive download, the image is displayed progressively during download as a browser would do.
|
||||
*/
|
||||
SDWebImageDownloaderProgressiveDownload = 1 << 1,
|
||||
|
||||
/**
|
||||
|
@ -45,7 +52,7 @@ typedef NS_OPTIONS(NSUInteger, SDWebImageDownloaderOptions) {
|
|||
SDWebImageDownloaderAllowInvalidSSLCertificates = 1 << 6,
|
||||
|
||||
/**
|
||||
* Put the image in the high priority queue.
|
||||
* Put the download in the high queue priority and task priority.
|
||||
*/
|
||||
SDWebImageDownloaderHighPriority = 1 << 7,
|
||||
|
||||
|
|
Loading…
Reference in New Issue