What would be more efficient to load content on a detail view from a view controller with a table view?
Should I pass the variables over to the detail view from the didSelectRowAtIndexPath:
method or is it better to make a JSON call to the server and load the data into a dictionary on the detail view?
I notice some lag when I pass the data from the view controller to the detail view via the didSelectRowAtIndexPath:
method
thanks for any help