我已經做了CAShapeLayer
與幾點通過設置其筆觸顏色爲紅色。然後我用UIImage
的圖案填充顏色。我想旋轉CAShapeLayer
以及填充模式使用UIRotationGestureRecognizer
。如何旋轉一個CAShapeLayer在其中心點
我已經使用CATransform3DRotate,但它不能正常工作。
CATransform3D transform = CATransform3DIdentity;
transform = CATransform3DRotate(transform, recognizer.rotation, 0.0, 0.0, 1.0);
shapeLayer.transform = transform;
在此先感謝
見我已經使用這個答案[這裏](http://stackoverflow.com/a/8232192/1161906) – bcattle