2

我正在使用 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];
    }
}
4

1 回答 1

1

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

于 2011-06-20T09:46:09.417 回答