I used alamofire to download and display images. And the cache is working great but when i updated the image of the same url link it doesn't reflect the update on my app. How can i tackle this problem? This is an brief code i used for displaying image.
let url = NSURL(string: "http://myserver.com/image/12345.png")
Alamofire.request(.GET, url).responseData({ response in
if let imageData = UIImage(data: response.result.value!) {
self.testImageView.image = imageData
}
})