Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable RTL direction for UICollectionView

Tags:

ios

swift

I'm building a custom calendar view with UICollectionView. Everything is pretty well but when I tried to test when language is set to Arabic, the cells are listed from right to left. Is there a way to disable this in RTL mode. I have checked the documentation but there is no such option.

like image 968
Hossam Ghareeb Avatar asked Dec 07 '22 22:12

Hossam Ghareeb


1 Answers

You can disable it by setting view semantics property You have to set it on UICollectionView there is a property in UIView Class

semanticContentAttribute 

with following value

UISemanticContentAttributeUnspecified = 0,
UISemanticContentAttributePlayback, 
UISemanticContentAttributeSpatial, 
UISemanticContentAttributeForceLeftToRight,
UISemanticContentAttributeForceRightToLeft

enter image description here

like image 155
Imran Avatar answered Dec 24 '22 15:12

Imran