Aligning right to left on UICollectionView

前端 未结 13 634
悲哀的现实
悲哀的现实 2020-12-02 08:31

this is a pretty straightforward question, but I haven\'t been able to find a definitive answer to it on SO (if I missed it, please correct me).

Basically, my quest

13条回答
  •  独厮守ぢ
    2020-12-02 09:15

    For anybody trying to achieve Right to Left layout of UICollectionView in Swift

    //in viewDidLoad
        YourCollectionView.transform = CGAffineTransform(scaleX: -1.0, y: 1.0)
    
    //in cellForItemAtIndexPath
        cell.transform = CGAffineTransform(scaleX: -1.0, y: 1.0)
    

提交回复
热议问题