刷新 AFOpenFlow

发布于 2024-12-21 10:41:07 字数 125 浏览 1 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

寂寞笑我太脆弱 2024-12-28 10:41:07

Alastair Stuart 提供的链接很好,但如果您已经实现了 coverflow,那么您可以通过调用重置/刷新 coverflow,如下所示:

如果您想刷新或将 coverflow 设置为索引 0,您可以使用以下内容:

[( AFOpenFlowView*)coverFlow setSelectedCover:0 ];

如果要重置 coverflow 使用:

    [(AFOpenFlowView*)coverFlow setNumberOfImages:0 ];
    //reset cover flow.
    [(AFOpenFlowView*)coverFlow setSelectedCover:(int)COVER_FLOW_RESET_INDEX ];

它将删除 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:

    [(AFOpenFlowView*)coverFlow setNumberOfImages:0 ];
    //reset cover flow.
    [(AFOpenFlowView*)coverFlow setSelectedCover:(int)COVER_FLOW_RESET_INDEX ];

it will delete all the images in cover flow.

琉璃梦幻 2024-12-28 10:41:07

尝试使用 iCarousel 代替。

Try using iCarousel instead.

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