views:

106

answers:

1

The code below is from another SO post, and my question is can the transition from one view to the next using this method be animated, and if so how?

// origView is an instance variable/IBOutlet to your original view.
- (IBAction)switchToPhoneView:(id)sender {
  if (origView == nil)
    origView = self.view;
  self.view = phoneViewController.view;
}

- (IBAction)switchToOriginalView:(id)sender {
  self.view = origView;
}
A: 

It sounds like this Apple example might be what you're looking for.

Sixten Otto
Perfect! Thank you!
skantner