¿Cómo hacer un UICollectionView con paginación infinita?

Tengo un UICollectionView con 6 páginas, y paginación habilitada, y un UIPageControl. Lo que quiero es que, cuando llegué a la última página, si arrastro hacia la derecha, UICollectionView se vuelva a cargar desde la primera página sin problemas.

- (void)scrollViewDidEndDecelerating:(UIScrollView *)sender
{

// The key is repositioning without animation
if (collectionView.contentOffset.x == 0) {
    // user is scrolling to the left from image 1 to image 10.
    // reposition offset to show image 10 that is on the right in the scroll view
    [collectionView scrollRectToVisible:CGRectMake(collectionView.frame.size.width*(pageControl.currentPage-1),0,collectionView.frame.size.width,collectionView.frame.size.height) animated:NO];
}
else if (collectionView.contentOffset.x == 1600) {
    // user is scrolling to the right from image 10 to image 1.
    // reposition offset to show image 1 that is on the left in the scroll view
    [collectionView scrollRectToVisible:CGRectMake(0,0,collectionView.frame.size.width,collectionView.frame.size.height) animated:NO];

}
pageControlUsed = NO;

}

No funciona como yo quiero. ¿Que puedo hacer?

Respuestas a la pregunta(3)

Su respuesta a la pregunta