UIScrollView Direction RTL for Right to Left Languages

前端 未结 5 1231
傲寒
傲寒 2021-01-11 11:43

Can we change the behavior of UIScrollView that it scrolls RTL content in it\'s reverse mode.

5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-11 12:20

    You can achieve it by rotating UIScrollView in Child views by 180 (Pi).

    self.scrollView.transform = CGAffineTransformMakeRotation(M_PI);
    subView.transform =  CGAffineTransformMakeRotation(M_PI);
    

提交回复
热议问题