http://code4app.net/ios/loop-ScrollView/4fdaa4676803faab3d000000
通过上面的链接获取循环循环滚动的源代码,顺便说一下,这将满足您对无限滚动视图的需求。
您甚至可以通过在Cyclescrollview.m类的句柄点击方法中使用点击滚动功能来自定义该开源代码,
- (void)handleTap:(UITapGestureRecognizer *)tap {
[scrollView scrollRectToVisible:CGRectMake(0, 30, 70, 40) animated:YES];
NSLog(@"Tap");
}
或者您甚至可以通过使用此方法来滚动图像以执行您想要的任何操作滚动功能,
- (void)cycleScrollViewDelegate:(CycleScrollView *)cycleScrollView didScrollImageView:(int)index
{
if (index==1)
{
NSLog(@"First image scrolled");
}
if (index==2)
{
NSLog(@"Second image scrolled");
}
if (index==3)
{
NSLog(@"Third image scrolled");
}
}
您还可以减少图像之间的间距,以使它们看起来像您提到的“一个按钮应该在中心,另外两个应该半隐藏”
祝你的翻转按钮好运。