IOS:在 iPad 中将卷曲效果作为地图

发布于 2024-12-22 14:42:07 字数 110 浏览 0 评论 0原文

iPad 地图中存在卷曲效果;我有两个问题:

1- 实现相同效果的方法是什么,但我想要完全卷曲而不是部分卷曲

2- 右下角的翻盖只是图形效果?或者我可以用代码来做到这一点?

In iPad maps there is curl effects; I have two questions:

1- what's the way to implement the same effect but I want a total curl and not partial

2- the flap at the bottom right, is only a graphic effect? or I can do it with code?

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

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

发布评论

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

评论(1

来世叙缘 2024-12-29 14:42:07

您看过 UIPageViewController 吗?它是在 iOS5 中添加的,可能会引导您走向正确的方向。

还有一个涉及卷曲的 UIViewAnimationTransition,但它从一个视图转到另一个视图 - 与地图不同。

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];
[UIView commitAnimations]

Have you looked at UIPageViewController? It was added in iOS5 and may lead you in the right direction.

There's also a UIViewAnimationTransition which involves a curl, but it goes from one view to another - not really like the map does it.

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];
[UIView commitAnimations]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文