File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -81,35 +81,35 @@ typedef enum SDImageCacheType SDImageCacheType;
81
81
- (void )storeImage : (UIImage *)image imageData : (NSData *)data forKey : (NSString *)key toDisk : (BOOL )toDisk ;
82
82
83
83
/* *
84
- * Query the disk cache asynchronousely .
84
+ * Query the disk cache asynchronously .
85
85
*
86
86
* @param key The unique key used to store the wanted image
87
87
*/
88
88
- (void )queryDiskCacheForKey : (NSString *)key done : (void (^)(UIImage *image, SDImageCacheType cacheType))doneBlock ;
89
89
90
90
/* *
91
- * Query the memory cache.
91
+ * Query the memory cache synchronously .
92
92
*
93
93
* @param key The unique key used to store the wanted image
94
94
*/
95
95
- (UIImage *)imageFromMemoryCacheForKey : (NSString *)key ;
96
96
97
97
/* *
98
- * Query the disk cache synchronousely .
98
+ * Query the disk cache synchronously after checking the memory cache .
99
99
*
100
100
* @param key The unique key used to store the wanted image
101
101
*/
102
102
- (UIImage *)imageFromDiskCacheForKey : (NSString *)key ;
103
103
104
104
/* *
105
- * Remove the image from memory and disk cache synchronousely
105
+ * Remove the image from memory and disk cache synchronously
106
106
*
107
107
* @param key The unique image cache key
108
108
*/
109
109
- (void )removeImageForKey : (NSString *)key ;
110
110
111
111
/* *
112
- * Remove the image from memory and optionaly disk cache synchronousely
112
+ * Remove the image from memory and optionaly disk cache synchronously
113
113
*
114
114
* @param key The unique image cache key
115
115
* @param fromDisk Also remove cache entry from disk if YES
You can’t perform that action at this time.
0 commit comments