大家好 我是iOS的初学者 当我使用NSTimer进行动作时,我正试图制作一个游戏(例如) 并使用CGPointMake在视图中构成它如此不真实我的意思是它像一个 低ram(框架)的旧电脑我认为我需要使用这个框架 任何人都可以帮助我吗?
-(void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration{
xValue = acceleration.x*80.0;
yValue = acceleration.y*80.0;
ball.center = CGPointMake(ball.center.x + xValue, ball.center.y);
if (ball.center.x < 24.0) {
ball.center = CGPointMake(24.0 , ball.center.y);
}
if (ball.center.x > 296.0) {
ball.center = CGPointMake(296.0 , ball.center.y);
}
}
答案 0 :(得分:1)
答案 1 :(得分:1)
下面:
如果您在论坛上注册,可以从“开始iPhone 3开发”一书下载示例代码。 第15章被称为“球”,并且具有根据加速度计的输入在屏幕上滚动球的代码。
答案 2 :(得分:1)
cocos2d是一个很好的编写iPhone游戏的框架
答案 3 :(得分:1)