Reputation: 2032
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
Upvotes: 1
Views: 74
Reputation: 85532
Use a UINavigationController. -initWithRootViewController using your first view controller, and then -pushViewController:animated: with your second view controller, passing NO for animated.
Upvotes: 1