2
A
回答
4
UIBezierPath* aPath = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(0, -240, 240, 240)];
// This will mirror the path
CGAffineTransform rotation = CGAffineTransformMakeScale(1.0, -1.0);
CGMutablePathRef f = CGPathCreateMutable();
CGPathAddPath(f, &rotation, aPath.CGPath);
CAKeyframeAnimation *pathAnimation = [CAKeyframeAnimation animationWithKeyPath:@"position"];
pathAnimation.calculationMode = kCAAnimationPaced;
pathAnimation.fillMode = kCAFillModeRemoved;
pathAnimation.rotationMode = kCAAnimationRotateAutoReverse;
pathAnimation.removedOnCompletion = NO;
pathAnimation.path = f;
pathAnimation.repeatCount = HUGE_VALF;;
pathAnimation.duration = 5.0f;
[r2.layer addAnimation:pathAnimation forKey:nil];
相關問題
- 1. 翻轉/鏡像圖像
- 2. 翻轉的圖像是鏡像的,如何使翻轉的圖像不鏡像?
- 3. UIImage翻轉和鏡像
- 4. 翻轉,在IE8鏡像 - CSS
- 5. 翻轉圖像/鏡像圖像
- 6. Javascript翻轉/鏡像一個圖像
- 7. 翻轉/鏡像的Android電子
- 8. Vuforia Videoplayback翻轉和鏡像視頻
- 9. 鏡像(翻轉)打印PDF文件
- 10. 填充parttern(位)被翻轉和鏡像
- 11. 「翻轉/鏡像」浮動圖表
- 12. 在IE翻轉動畫:翻轉側顯示鏡像內容
- 13. 正確翻轉/鏡像像素的圖像?
- 14. 翻轉圖像以獲得鏡像效果
- 15. 翻轉/鏡像圖像水平+垂直與css
- 16. 在PictureBox控件中翻轉圖像(鏡像)
- 17. 鏡像/在IE翻轉圖像和保持透明度
- 18. Three.js鏡像正常地圖翻轉頻道
- 19. 錯誤的矩陣翻轉(鏡像反射)MovieClip
- 20. 水平翻轉頁面(鏡像頁面)AlivePDF
- 21. 是否可以在R中繪製鏡像翻轉的文本?
- 22. 翻轉圖像
- 23. 翻轉圖像
- 24. 翻轉圖像
- 25. 翻轉圖像
- 26. 翻轉圖像
- 27. Python鏡像鏡像
- 28. 從Android的前置攝像頭拍攝的鏡像翻轉視頻
- 29. jQuery翻轉圖像
- 30. javascript - 翻轉圖像
您沒有說明您的任何企圖。基本上你的問題是這樣的:「這就是我想要做的,請發送代碼」我們不知道你被困在哪裏,所以很難幫助你。如果您爲了清晰起見可以對此進行編輯,請將其標記爲供審查主持人注意。 –