2013-03-16 44 views

回答

0

嘗試這樣我希望it'l幫助你,

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時間。