我想在我的一个控制器中应用页面控制部分,并从中进行自动幻灯片放映。如果您想了解我的意思,请查看应用程序 - Goal.com应用程序。
答案 0 :(得分:0)
尝试这样,我希望它能帮到你,
UIScrollView *scrollView;
-(void)animation{
[UIView animateWithDuration:0.4 delay:5 options:UIViewAnimationCurveLinear
animations:^{
[scrollView setContentOffset:CGPointMake(index*320, 0)];
}
completion:^(BOOL finished)
{
index++;
[self animation];
}];
}
上面代码索引中的是一个整数值,用于更改滚动视图偏移量,并根据需要提供delay
时间。