Nếu
muốn một view nào đó, như label không thẳng mà chéo một góc, ta có thể dùng lệnh
sau để quay.
self.la.transform = CGAffineTransformMakeRotation((45.0 * CGFloat(M_PI)) / 180.0)
Để nó thành vuông góc, ta dùng
self.la.transform = CGAffineTransformMakeRotation((90.0 * CGFloat(M_PI)) / 180.0)
Để nó lộn ngược, ta chuyển thành 180 độ
self.la.transform = CGAffineTransformMakeRotation((180.0 * CGFloat(M_PI)) / 180.0)
No comments:
Post a Comment