仅具有核心动画的 FlipBoard
我想通过仅使用核心动画而不是 OpenGL 来制作多个视图(不是图像而是 uiview)的翻转板。我看到了很多翻转的例子,但它们只涉及图像翻转和图像层的捕获。就像这里: https://github.com/brow/leaves 有人可以帮助我吗?
i would like to do a flipboard of many view (not image but uiview) by using only Core Animation, not OpenGL. i saw many exemple of flip but they involve only image flip and capture of image layer. like here: https://github.com/brow/leaves
some can help me please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现了这个 名为 FlipView 的 Github 项目。它包含您可能不需要的布局工具,但页面翻转是使用 AFKPageFlipper 类。
要自己实现它:
[layer renderInContext:]
)内容
。I found this Github project called FlipView. It includes layout tools that you might not need, but the page flipping is implemented using Core Animation layers in the AFKPageFlipper class.
To implement it yourself:
[layer renderInContext:]
)contents
.CATransform3D
transform to the layer with perspective. See Listing 2 in the Core Animation Guide for adding perspective.