i have a scrolview with paging it's a scrol view for slide with 4 picture it's work fine with user interaction so my question i want to set this scrolview scrol automatique without user interaction so like a banner for pub this is my code in view didload :
[UIScrollView beginAnimations:nil context:nil];
[UIScrollView setAnimationDuration:4.0];
[UIScrollView setAnimationDelay:4.0];
[scroller setContentOffset:CGPointMake(320, 98)];
[UIScrollView commitAnimations ];
in this whay the scrol automatic work but the probleme the scrol wait 4 s and after go to the seconde image and is stop and if i add this code
[UIScrollView beginAnimations:nil context:nil];
[UIScrollView setAnimationDuration:4.0];
[UIScrollView setAnimationRepeatAutoreverses:YES];
[UIScrollView setAnimationRepeatCount:INFINITY];
[UIScrollView setAnimationDelay:4.0];
[scroller setContentOffset:CGPointMake(320, 98)];
[UIScrollView commitAnimations ];
the scroller don't stop 4s after showing the second picture so in this case it's stop at first 4s after if the annimation begin don't stop never
so my question i want to do this :
image 1 ---showing fo 4 s -----image2 ----showing for 4s ----- image3 ----showing for 4s ----image 4 ----showing for 4 s ----- image 1 ---- showing for 4 s ...... like this automatique
so if someone can help me with example code or tutorial or any documentation it's will be very cool because i search in google and i find anything