Fix raw value for .None option

This commit is contained in:
Adlai Holler
2015-11-22 10:49:15 -08:00
parent bace9ce8d6
commit 897fd4c55f

View File

@@ -37,7 +37,7 @@ typedef NS_ENUM(NSUInteger, PINRemoteImageManagerError) {
*/
typedef NS_OPTIONS(NSUInteger, PINRemoteImageManagerDownloadOptions) {
/** Download and process with default options (no other options set) */
PINRemoteImageManagerDownloadOptionsNone,
PINRemoteImageManagerDownloadOptionsNone = 0,
/** Regardless of the image type downloaded, return UIImages and *not* FLAnimatedImage */
PINRemoteImageManagerDownloadOptionsIgnoreGIFs,
/** Skip decoding the image before returning. This means smaller images returned, but images will be decoded on the main thread when set on an image view */