Quote:
Originally Posted by mr-sk
So, do I have to create the view's programmatically?
|
you don't have to. if you create them in IB you just need to make sure you have outlets for both of them.
Quote:
|
Also, do I need two views in order to do the transitioning?
|
You could probably fake it with one view, if you did something like:
animate frame change to make the view "disappear"
then set the new content in the existing view (which is hidden)
animate another frame change to make the view "appear"
you wouldn't ever be able to see both at the same time, and you would have to do some funky synchronization tricks to make sure that the first animation finished before kicking off the second one.