I have an application which has a series of UISwitch which represent the values of different features in a VOIP Platform. For example if Call forwarding is on or off. The information is supplied by the VOIP switch via a restful interface. I created an application which works fine, but I think the architecture is not ideal. There may eventually be about 20 features, so it will scroll of the iphone screen.

My question is what is the best method to collect the information from the restful interface and then display it in my cells. I have two ideas in my mind but Im open to a third.

Option 1. In my view controller I create an array which stores all the values which I get in the method - (void)viewWillAppear:(BOOL)animated via a loop and it calls the restful interface in one big hit and I store the values which I later use to populate the custom cells I have created. The Con of this is I have to store all of the http requests and answers even though I may never need to display that feature.

Option 2. In My view controller I populate the cells in cellForRowAtIndexPath, but I have to do a http request each time. The con of this is (apart from my code failing) is that during a scroll I worry it might be to slow to get the result before the cell needs to be displayed.

Any ideas appreciated.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.