I want to use AlamofireImage to download images from a URL and then cache it on the device’s disk space. I read a few posts about this and found out that AlamofireImage supports this with the ImageDownloader class. The most interesting information was given in this answer SO
So, I tried installing a custom NSURLCache for ImageDownloader so that it caches images directly to disk. I did this by setting the memory size to 0. Then I use this custom ImageDownloader to load the image. The folder that I specified for the path to the disk is created on the disk, but, unfortunately, it remains empty and the image is not cached in any way.
** Edit: ** It is important to note that cached responses are not saved in a folder in the cache directory, but in the database file next to the folder.
Can someone tell me what I'm doing wrong here? Thanks so much for reading!
func diskImageDownloader(diskSpaceMB: Int = 100) -> ImageDownloader { let diskCapacity = diskSpaceMB * 1024 * 1024 let diskCache = NSURLCache(memoryCapacity: 0, diskCapacity: diskCapacity, diskPath: "alamofireimage_disk_cache") let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() configuration.URLCache = diskCache let downloader = ImageDownloader(configuration: configuration) UIImageView.af_sharedImageDownloader = downloader return downloader } func getProfileImage(atURL url: String, onComplete: SRServiceResponse<UIImage> -> Void) { guard let imageURL = NSURL(string: url) else { // TODO: Fail here return } let request = NSURLRequest(URL: imageURL) let imageDownloader = self.diskImageDownloader() imageDownloader.downloadImage(URLRequest: request) { (response) in switch response.result { case .Success(let image): // Do something case .Failure(let error): // Do something } } }
ios swift alamofire alamofireimage
Philipp otto
source share