Reputation: 1015
How do you manually rotate a view 180 degrees using CGAffineTransformMakeRotation?
Upvotes: 1
Views: 1754
Reputation: 18561
UIView *myView = [[UIView alloc] init];
[myView setTransform:CGAffineTransformMakeRotation(M_PI)];
Upvotes: 3