I am using a standard UICollectionView, UIPageControl and using this custom carousel flow layout.
I am unsure which property is actually triggering this, whether it is related to the collection view itself or the carousel..
How can I remove this grey horizontal line that appears when I swipe left or right? It remains on screen for a few seconds.. But I wan't to get rid of it all together.
Thanks
Edit:
Fixed by adding this after initialisation of the collection view..
collectionView.showsHorizontalScrollIndicator = false
Set collectionview.showsHorizontalScrollIndicator to false after initialising it in the view controller class..
Like this:
collectionView.showsHorizontalScrollIndicator = false