Hi.
What I try to do: If a user is pressing a button, a new view controller is being loaded and pushed to the navigation Controller.
The new view controller is doing some hard database querying in it's ViedDidLoad Method which causes some seconds to get the view loaded.
I'm trying to show a wait indicator before the view is starting to load.
If I try to add a UIActivityIndicatorView as subview of my starting view right before the new view is being allocated, the indicator is shown AFTER the new view finished loading...
I also tried to put the database querying in the ViewDidAppear Method but with the same result.