-1

我想在我的一个控制器中应用一个页面控制部分,并从中制作一个自动幻灯片。如果您想了解我的意思,请查看应用程序 - Goal.com 应用程序。

4

1 回答 1

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];
 }];
}

在上面的代码中 index 是一个整数值,用于更改滚动视图偏移量并给出delay你想要的时间。

于 2013-03-16T05:11:59.650 回答