Best way to change between views in iOS

19.4k Views Asked by At

How do you go from one view to another? Is

[window addSubview:myView];

The only option or is there a better way to do this?

1

There are 1 best solutions below

3
On BEST ANSWER

First look at Apple's View Controller Programming Guide for iOS. You might start with a navigation-based interface it sounds. What you say is strictly true, but you want to take advantage of features like animation, which come for 'free' if you use Apple's view controller classes.