2014-02-27 163 views
-2

如何沿着路徑動畫製作UIImageView?如何沿着路徑製作動畫

有沒有人知道任何教程通過這個?

+1

您是否嘗試過在線查找?請展示一些研究工作。 –

+0

歡迎來到StackOverflow!這裏最好的問題是關於代碼,你嘗試過什麼以及你做了什麼努力。做一些研究,然後問一個具體的問題。 –

+0

我是如何使用關鍵幀動畫來做到這一點 – user3349248

回答

0

CAKayframeAnimation可以這樣做。

CGMutablePathRef path = CGPathCreateMutable(); 
//your code to configure the path 

//configure the animation 
CAKeyframeAnimation *animation = [CAKeyframeAnimation animationWithKeyPath:@"position"]; 
[animation setPath:path]; 
[animation setDuration:3.0]; 
CGPathRelease(path); 
[self.yourImageView.layer addAnimation:animation forKey:NULL]; 
+0

有沒有什麼關於動畫的.h文件 – user3349248

+0

什麼需要,但你可以將你的imageView作爲一個屬性添加到viewController – Jing

+0

這是一個UIView子類嗎? – user3349248