There are four tabs in my app. When the user first opens the app, he will see the first tab's view controller. At this point, I want to load all the other tabs' content, so when the user opens other tabs he will see the content instantly.
I know it's possible in Android. Is it possible in iOS?
EDIT:
I tried to prepare a viewcontroller by invoking [myViewController view];
inside AppDelegate but when I clicked the tab that opens the viewController, it seems to load again with a new view.
Related: Force viewDidLoad to fire on iOS