救命!将图像添加到UIViewController Transition! :S

时间:2010-08-03 14:03:49

标签: iphone xcode uiviewcontroller viewcontroller

我目前在我的应用中使用以下设置了几个视图控制器和转场:

 ViewController2 *controller2 = [[ViewController2 alloc] initWithNibName:@"ViewController2" bundle:nil];
 controller2.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
 [self presentModalViewController:controller2 animated:YES];
 [controller2 release]; controller2 = nil;

我真正想要的是当进行垂直过渡时,我想要一个气泡图像通过过渡向上移动到屏幕上。无论如何都要在这些过渡中添加图像。如果不是,我想知道如何创建这种效果,就像我之前在应用程序中看到的那样。

先谢谢,

亚当

1 个答案:

答案 0 :(得分:0)

简单的方法是添加一个UIImageView,其大小与动画视图的大小相同,并将气泡图像设置为该视图的子视图。然后,您可以在viewDidUnload中或在代码中的适当位置删除它。