views:

28

answers:

1

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

+1  A: 

Use a UINavigationController. -initWithRootViewController using your first view controller, and then -pushViewController:animated: with your second view controller, passing NO for animated.

Ben Gottlieb
Thx for your quick replay, I'll try that.
Sebastian