OS X在iOS上是否具有等效的[UIView setTransform:]
?我有NSTextField
我要旋转10度。在iOS中,我只使用[UILabel setTransform:]
。 Cocoa Framework有什么相同的东西吗?
答案 0 :(得分:9)
frameRotation
或frameCenterRotation
应该这样做
答案 1 :(得分:4)
您可以使用底层并旋转
myView.wantsLayer = YES;
myView.layer.transform = CATransform3DMakeRotation(angle, 0, 0, 1);
P.S。 记得导入QuartzCore