FlowCoverView 如何以编程方式强制视图移动到给定图像?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 flowcover 类的绘制方法中设置中间图像。
Set the mid image in draw method in flowcover class.