Considering I'm using PFImageViews, with caching enabled, I would like to know if there's a way to determine whether an image has already been downloaded or not.
All in all, I want to say:
if imageAlreadyDownloaded {
...
}
else {
...
}
Is it possible?
I think you will have to roll your own solution using the PFImageView and the loadInBackground method that has a completion handler.
Something like: