I have a MainViewController in my Cocoa Touch app which shows a status view containing a UIProgressBar
view.
From the MainViewController, FlickrImage
model objects are created and iterated over. the FlickrImage
objects themselves interact with the Flickr API, which takes time which is why I want the user see the progress bar. The challenge (at least to me it is ;) now is to interact with the UIProgressBar (send progress
messages) from the FlickrImage
objects. Do I do this using a NSNotificationCenter
or can I just declare the MainViewController as a forward class in FlickrImage
and interact with the UIProgressBar directly?