在iBooks.app中打开PDF文件时,其缩略图会扩展到整个屏幕,然后显示PDF页面。 当您在iPad上的Photos.app中打开照片时,其缩略图也会扩展到整个屏幕。然后您可以在页面之间滑动,缩放它等等。所以,我想在我的应用程序中实现这个动画,但我不知道该怎么做。
你能帮帮我吗?非常感谢你的回答。答案 0 :(得分:2)
您可以使用简单的动画:
// Begin animation
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationCurve:UIViewAnimationCurveLinear];
[UIView setAnimationDuration:0.5];
// Maximize image size
MyImage.frame = self.view.frame;
// Commit animation
[UIView commitAnimations];