我目前在我的应用程序中设置了几个视图控制器和转换:
ViewController2 *controller2 = [[ViewController2 alloc] initWithNibName:@"ViewController2" bundle:nil];
controller2.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:controller2 animated:YES];
[controller2 release]; controller2 = nil;
我真正想要的是在进行垂直过渡时,我希望气泡图像随着过渡在屏幕上移动。无论如何都可以为这些过渡添加图像。如果不是,我想知道如何创建这种效果,就像我之前在应用程序中看到的那样。
提前致谢,
亚当