I\'m working on some ticker-like functionality and am using a UICollectionView. It was originally a scrollView, but we figure a collectionView will make it easier
UICollectionView
Use :scrollToItemAtIndexPath instead:
:scrollToItemAtIndexPath
[UIView animateWithDuration:duration animations:^{ [self.collectionView scrollToItemAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UICollectionViewScrollPositionNone animated:NO]; }];