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