刷新 AFOpenFlow
我正在使用 AFOpenFlow 库在 iPad 上创建封面流。
我还在视图中提供了一个相机按钮。如果用户捕获任何图像并返回到之前的视图,则应刷新封面流程以在其中显示新图像。
有什么想法如何做到这一点吗?
I am creating a cover flow on iPad using AFOpenFlow library.
I am also providing a camera button in the view. If user captures any image and comes back to the previous view, the cover flow should be refreshed displaying the new image in it.
Any ideas how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Alastair Stuart 提供的链接很好,但如果您已经实现了 coverflow,那么您可以通过调用重置/刷新 coverflow,如下所示:
如果您想刷新或将 coverflow 设置为索引 0,您可以使用以下内容:
[( AFOpenFlowView*)coverFlow setSelectedCover:0 ];
如果要重置 coverflow 使用:
它将删除 cover flow 中的所有图像。
The link provided by Alastair Stuart is nice but if you have implemented coverflow already then you can reset/refresh the coverflow by calling as follows:
if you want to refresh or set the coverflow to index 0 you can use following:
[(AFOpenFlowView*)coverFlow setSelectedCover:0 ];
if you want to reset coverflow use:
it will delete all the images in cover flow.
尝试使用 iCarousel 代替。
Try using iCarousel instead.