Data doesnt load quickly enough...
My app downloads a plist from a webserver. The call is in the appDidFinishLaunching method of the appDelegate. But because the app loads quickly, the data is not displayed until the app is relaunched. What is happening is that the data file is loaded into the iphone but after the view has been presented.
I need to refresh the viewcontrollers view, which is a UIViewController. I know i can do [self reloadData]; on a UITableViewController but UIVIewController?
Or do i truncate the app from displaying until the file is dl? If so, where or how do i do this?
|