Quote:
Originally Posted by racharambola5
Hi,
I am trying to add some titles to my project. So, when my app gets loaded it should show my title screen with activity indicator spinning and after 3seconds it should push the navigation controller. Basically I will have an image on the first view controller. So, in IB I added an image view and set the image. Please help me guys how to load second view controller after the first view controller gets loaded..
Thanks for all your time..Sorry guys if my English is not good..
|
I think you trying to add a splash screen!
in the YourProjectappDelegate.m add the code such as:
YourTilteView *splashView = [[UIImageView alloc] init];
[window addSubview:splashView];
[window bringSubviewToFront:splashView];
[NSThread detachNewThreadSelector:@selector(loadController

toTarget:self withObject:nil];
and in the loadController: method remove splashview and add your navigation view
i hope this works!