如何旋转UIScrollView?

时间:2015-09-01 17:55:05

标签: ios iphone swift uiscrollview

我有一个大的UIScrollView画布,我想完全旋转这个scrollView。为此,我尝试:

scrollView.transform = CGAffineTransformMakeRotation(90.0)

但在这种情况下,我得到:

enter image description here

它不是90度。在我看来,它以3D旋转。如何正确旋转?

1 个答案:

答案 0 :(得分:3)

CGAffineTransformMakeRotation采用弧度而非度数。

试试这个:

import Darwin


scrollView.transform = CGAffineTransformMakeRotation(M_PI / 2.0)