我目前在我的应用中使用以下设置了几个视图控制器和转场:
ViewController2 *controller2 = [[ViewController2 alloc] initWithNibName:@"ViewController2" bundle:nil];
controller2.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:controller2 animated:YES];
[controller2 release]; controller2 = nil;
我真正想要的是当进行垂直过渡时,我想要一个气泡图像通过过渡向上移动到屏幕上。无论如何都要在这些过渡中添加图像。如果不是,我想知道如何创建这种效果,就像我之前在应用程序中看到的那样。
先谢谢,
亚当
答案 0 :(得分:0)
简单的方法是添加一个UIImageView,其大小与动画视图的大小相同,并将气泡图像设置为该视图的子视图。然后,您可以在viewDidUnload中或在代码中的适当位置删除它。