Hi, I'm a iPhone App newbie. I have a viewcontroller and want to load a different viewcontroller directly after the first one is initialized.
Any help would be appreaciated. :)
Cheers Sebastian
Hi, I'm a iPhone App newbie. I have a viewcontroller and want to load a different viewcontroller directly after the first one is initialized.
Any help would be appreaciated. :)
Cheers Sebastian
Use a UINavigationController. -initWithRootViewController using your first view controller, and then -pushViewController:animated: with your second view controller, passing NO for animated.