Search code examples
alamofirealamofireimage

AlamofireImage 2.0 sessionManager issue


I am using the new AlamofireImage 2.1.0 version in my app and when trying to clear the image cache using

imageDownloader.sessionManager.session.configuration.URLCache?.removeCachedResponseForRequest(URLRequest)

I am receiving an error:

Value of type 'ImageDownloader' has no member 'sessionManager'

I am also using Alamofire 3.1.2


Solution

  • The sessionManager property on ImageDownloader has an internal ACL in the 2.1.0 release. I've recently changed the ACL to public in f35e4748 which is sitting in the master branch. If you update to master, your code sample should work as expected.

    We'll get the 2.1.1 release cut here within the next couple of days.