FlowCoverView 如何以编程方式强制视图移动到给定图像?

发布于 2024-11-16 06:24:44 字数 463 浏览 2 评论 0原文

我正在使用 FlowCoverView,这是 Apple 封面流程的开源(且符合 AppStore 兼容)替代品(您可以在此处找到它 http: //chaosinmotion.com/flowcover.m

我想修改代码,以便您可以根据给定的索引以编程方式强制视图从特定图像开始(或移动到)。 但我没有成功:(

解决方案:

-(void)goToIndex:(NSUInteger)index
{
    if (index<[self numTiles])
    {
        offset = index;
        [self draw];
        //[delegate flowCover:self highlighted:index];
    }
}

I'm using FlowCoverView, an open source (and AppStore compliant) alternative to Apple's cover flow (you can find it here http://chaosinmotion.com/flowcover.m)

I'd like to modify the code so that you can force the view to start from (or to move to) a specific image programmatically, given its index.
I'm not being successful though :(

Solution:

-(void)goToIndex:(NSUInteger)index
{
    if (index<[self numTiles])
    {
        offset = index;
        [self draw];
        //[delegate flowCover:self highlighted:index];
    }
}

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

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

发布评论

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

评论(1

孤芳又自赏 2024-11-23 06:24:44

在 flowcover 类的绘制方法中设置中间图像。

Set the mid image in draw method in flowcover class.

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