0

Auto scrolling appear smooth, when I specify timeInterval for auto scroll 0.0333. But, If I specify timeInterval for auto scroll 5.0 sec, the auto scroll not appear smooth. Is there any animation duration in iCarousel?

user1667968
  • 1,489
  • 3
  • 12
  • 16

2 Answers2

0

Try out this.

[_icarousel scrollByNumberOfItems:85 duration:10];//scrolls 85 items in 10 seconds
Govind
  • 2,337
  • 33
  • 43
0

Go to iCarousel.m file and add the following line of code inside the setUp method.

- (void)setUp
{ 
   _autoscroll=1;
}
casillas
  • 16,351
  • 19
  • 115
  • 215