| | |
| | | + (NSURLCache *)defaultURLCache; |
| | | |
| | | /** |
| | | The default `NSURLSessionConfiguration` with common usage parameter values. |
| | | */ |
| | | + (NSURLSessionConfiguration *)defaultURLSessionConfiguration; |
| | | |
| | | /** |
| | | Default initializer |
| | | |
| | | @return An instance of `AFImageDownloader` initialized with default values. |
| | |
| | | - (instancetype)init; |
| | | |
| | | /** |
| | | Initializer with specific `URLSessionConfiguration` |
| | | |
| | | @param configuration The `NSURLSessionConfiguration` to be be used |
| | | |
| | | @return An instance of `AFImageDownloader` initialized with default values and custom `NSURLSessionConfiguration` |
| | | */ |
| | | - (instancetype)initWithSessionConfiguration:(NSURLSessionConfiguration *)configuration; |
| | | |
| | | /** |
| | | Initializes the `AFImageDownloader` instance with the given session manager, download prioritization, maximum active download count and image cache. |
| | | |
| | | @param sessionManager The session manager to use to download images. |