I'm trying to change the navigation from the UICollectionView from up to down to from right to left:
I tried:
self.collectionView.semanticContentAttribute = UISemanticContentAttributeForceRightToLeft;
But did work. Still works from up to down
I'm trying to change the navigation from the UICollectionView from up to down to from right to left:
I tried:
self.collectionView.semanticContentAttribute = UISemanticContentAttributeForceRightToLeft;
But did work. Still works from up to down
If you try above line of code in your project it changes the content of the collection view from right to left only. But if you need to scroll from right to left follow the below code.It works perfectly.
I tried the blow line of code in two sample project.As it works perfectly I post the answer here.
//Scroll From Right to Left
[self.yourCollectionView scrollToItemAtIndexPath:[NSIndexPath indexPathForItem:array.count - 1 inSection:0] atScrollPosition:UICollectionViewScrollPositionRight animated:NO];
I set above code in viewDidLoad method.