文件打开动画就像 iPad 上的 iBooks 和 Photos.app 中一样

发布于 2024-12-10 09:39:17 字数 176 浏览 0 评论 0原文

当您在 iBooks.app 中打开 PDF 文件时,其缩略图会扩展到整个屏幕,然后显示 PDF 页面。 当您在 iPad 上的 Photos.app 中打开照片时,其缩略图也会扩展到整个屏幕。然后您可以在页面之间滑动、缩放等。所以,我想在我的应用程序中实现这个动画,但我不知道该怎么做。

你能帮助我吗?非常感谢您的回答。

When you open a PDF file in iBooks.app, its thumbnail expands to entire screen, then it shows a PDF page.
And when you open a photo in Photos.app on iPad, its thumbnail expands to entire screen too. Then you can swipe between pages, zoom it and so on. So, I would like to implement this animation in my application, but I have no idea how to do it.

Can you help me? Thank you very much for your answer.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与他有关 2024-12-17 09:39:17

您可以使用一个简单的动画:

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

You can use a simple animation:

  // 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];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文