I have an iPhone app with several view controllers, each of them pulls RSS, images, etc from the web. Right now I have all of the async network calls in the view controllers. I would like to separate this code into a data model class that I can just include so I can get rid of redundant code and make my application easier to maintain/modify.
It would be ideal if I could do the async calls in my model class, then have my view controller call a method of the model that will return a dictionary/etc. I just don't think I have a proper grasp on the right way to do this. Would I need to use NSNotification? Delegates?
If anyone could point me in the right direction that would be great! Thanks for reading.