我有一个大的UIScrollView画布,我想完全旋转这个scrollView。为此,我尝试:
scrollView.transform = CGAffineTransformMakeRotation(90.0)
但在这种情况下,我得到:
它不是90度。在我看来,它以3D旋转。如何正确旋转?
答案 0 :(得分:3)
CGAffineTransformMakeRotation采用弧度而非度数。
试试这个:
import Darwin
scrollView.transform = CGAffineTransformMakeRotation(M_PI / 2.0)