Facepalm. I have been using a Github image downloader to display remote images. This is SDWebImage. I've been playing with this for an hour and a half and I'm totally lost apparently and would be eternally grateful if someone could help me figure this out.
So basically, in the SDImageCache.h file of the framework, it it set to cache images for a week. That is problematic if you are trying to update your images frequently, since it doesn't download if the image is already cached.
On Stack Overflow, I've found a bunch of people with the same issue, but so far, the solutions haven't worked. Luckily, the guy who came up with this posted his solution to empty the image cache: call for "[SDWebImageManager.sharedManager.imageCache clearMemory]".
I put that method in my main view controller's .m file with the hope it would clear the cache after calling for the image so it would update. No dice. I tried it before the ViewDidLoad too with the hope it would clear the image and initiate a download. No luck again.
Any advice on what I'm doing wrong? Here's a screen shot of my implementation file if that helps! This is driving me nuts. Thanks!