Quote:
Originally Posted by jsd
are you asking how to do it without writing any code, purely using IB? i don't believe that is possible. somehow you have to trigger the transition between views. you can use a UINavigationController (hide the top bar if you don't want users to see it or be able to move backwards), or do it all manually with coreanimation (see the "viewtransitions" sample app at the apple site), or get really simple and do
Code:
[[view1 superview] addSubview:view2];
[view1 removeFromSuperview];
|
Nope - not just in IB. I'm not afraid of some extra code.

I've just never done it before, so I wasn't sure of the right way to go about switching from one view to another with different .xib files.
Thanks for the links IphoneSDK. I'll check them out now.