1

我有一个小的浮动 UIView,viewHover,它充当 2 个视图“viewHot 和 viewCold”的容器

我在 viewHot 和 viewCold 之间进行转换,放大然后溶解转换,我已经看过几次了。

这可能吗?

4

2 回答 2

1

这可能对其他人有帮助...

//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];

  }
于 2011-04-07T06:28:08.613 回答
0

不可能,因为该过渡不存在

于 2010-03-10T12:37:23.927 回答