GoAutoSlideView
GoAutoSlideView copied to clipboard
ScrollView Animation not working.
Thank you for awesome library, but animation is not working properly. The default value of animation is NO. I think the right default value is YES same as your Example project.
Line 91~94 in GoAutoSlideView.m
- (void)onTimerFired{
CGPoint newOffset = CGPointMake(self.scrollView.contentOffset.x + CGRectGetWidth(self.bounds), self.scrollView.contentOffset.y);
[self.scrollView setContentOffset:newOffset animated:NO];
}
It should be edited like
[self.scrollView setContentOffset:newOffset animated:YES];
Thank you for your comment. I guess I disabled animation just for avoiding a weird problem.