Question

I have a small floating UIView, viewHover, which acts as a container to 2 views "viewHot and viewCold"

I which to transition between viewHot and viewCold with a zoom in then disolve transition I have seen a few times.

Is this possible?

Was it helpful?

Solution 2

not possible because that transition does not exist

OTHER TIPS

This may help someone else...

//hotViewController.m

  hotViewController *hotController = [[[hotViewController alloc] init] autorelease]; 

  [hotController setModalTransitionStyle:UIModalTransitionStyleCrossDissolve]; 

  [self presentModalViewController:hotController animated:YES];

//coldViewController.m

  -(IBAction)back:(id)sender {

        [self dismissModalViewControllerAnimated:YES];

  }
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top