我正在創建應該在屏幕上移動的動畫球。我想讓它朝着屏幕的中心移動,就好像它被中心所吸引。我怎樣才能做到這一點?Xcode,iphone - 使圖像動畫在特定方向移動
2
A
回答
2
你可以試試這個代碼
[UIView beginAnimations:nil context:NULL]; //starting Animation
[UIView setAnimationDuration:1.0];
[UIView setAnimationRepeatCount:10];
[UIView setAnimationRrepeatAutoreverses:YES];
CGPoint position = 200.0f;
position.y = 200.0f;
position.x = 150.0f;
img.center = position;
[UIView commitAnimations];
如果是cocos2d的,您可以使用Move方法,
id move = [CCMoveTo actionWithDuration:3 position:ccp(160,240);
[sprite runAction:move];
+0
ü`CGPoint位置= 200.0f;`ISN沒錯,對吧?另外,你不需要`CGPointMake(160.0f,240.0f)`作爲中心嗎? – 2011-04-15 17:58:47
1
image.center = CGPointMake(image.center.x + 10, image.center.y);
相關問題
- 1. 以特定方向移動CAEmitterCell動畫
- 2. 使圖像以特定方式移動
- 3. Iphone以特定速度在特定方向上移動
- 4. iPhone - 創建動畫像Xcode
- 5. 翻轉圖像/動畫,使其跟隨移動方向
- 6. iPhone視圖移動動畫
- 7. iPhone啓動圖像方向
- 8. 動畫移動圖像
- 9. 圖像動畫:讓圖像向左移動,然後向後移動
- 10. 圖像與動畫在iphone
- 11. JavaFX移動圖像動畫
- 12. 2D在特定方向上的移動
- 13. 動畫圖像,但圖像不移動
- 14. xcode iphone球動畫
- 15. 使用CSS3動畫移動圖像
- 16. 向其方向移動圖像?
- 17. CSS動畫/使用@KEYFRAMES將圖像向上移動屏幕
- 18. jQuery:動畫圖像連續向左和向右移動
- 19. 動畫圖像像它從右向左移動
- 20. iPhone:動畫向上移動視圖控制器
- 21. 在畫布上繪圖以編程方式使圖像移動
- 22. 從右向左動畫UIView方向,iPhone
- 23. 移動畫廊圖像
- 24. iPhone UIImageView與動畫圖像需要沿着路徑移動
- 25. 在滾動上向下移動圖像
- 26. 以圓形方向移動圖像
- 27. ios:基於方向的移動圖像
- 28. 簡單的方法來在移動屏幕時動畫圖像?
- 29. 旋轉動畫xcode iphone
- 30. CADisplayLink問題動畫iphone xcode
使用cocos2d的 – Anish 2011-04-15 16:58:34