用惯性移动汽车

时间:2012-08-23 08:56:25

标签: iphone objective-c xcode ios4

我试图在没有任何物理特性的情况下用惯性移动汽车。我在Objective C中使用基于View的应用程序。
可以这样做吗?我的任务是:
我触摸汽车并向左移动,当触摸结束方法完成时,汽车应该继续惯性运动。

1 个答案:

答案 0 :(得分:0)

你有没有尝试过什么?

如果你不想用物理学做这件事,你将很难尝试让它做你想要它做的现实。至少你需要

v = u - at

其中:

v is the new speed, 
u is the initial speed 
t is the time and 
a is the deceleration

这是你需要自己想出一个数字的减速度。