I am downloading images using NSOperationQueue.
I want to call a method reloadView
of my view controller once the image download is complete.
However when the download is in progress, it is fairly possible that user has moved to a different view. This other view will also have a reloadView
method (e.g. first view shows total downloaded images count, and second shows thumbnails of download images)
Basically what I want is that whenever an image download is completed, I should be able to call the reloadView
method of the active view controller whichever it is?
How can this be possible?