我只是開發一個簡單的iPhone應用程序,其中一個槳葉自動向左和向右移動。什麼是在iPhone上自動向左和向右移動撥片的邏輯?
我的邏輯:
// First to determine the CGPoint of paddle
CGPoint detectXY = CGPointMake(paddle.center.x ,paddle.center.y);
// Second to determine the velocity of paddle
CGPoint paddleVelocity = CGPointMake(1,1);
// Adding velocity with X,Y cordinate
paddle.center = CGPointMake(paddle.center.x + paddleVelocity.x,
paddle.center.y + paddleVelocity.y);
但槳不動......
任何想法?
哪裏(在什麼樣的對象的方法)是代碼? – 2009-10-20 13:11:42
另外,什麼是槳? CALayer或UIView? – 2009-10-20 16:45:25
paddle只是一個UIImageView。我想要的槳運動就像在pong遊戲中發生的一樣。 – raaz 2009-10-21 05:02:32