开发者

Iphone Animation - Calculation to plot Cartesian Coordinates

I have two points (x1, y1) A & (x2, y2) B.

I want to animate an image from point A to point B but also have a touch event on that image. What is the best way to accomplish this?

I am currently using CGPointMake to manually plot points but I want to be able to just plug in the two coordinates and have a timer loop to move the object.

I have this so far but it doesn't seem to work.

CGFloat xStep = x1;

xStep++;

CGFloat yStep = (((y2-y1)/(x2-x开发者_运维百科1))*xStep)+(((y2-y1)/(x2-x1))*x1);


i think you're going about it too low level. what about doing things like:

How does [UIView beginAnimations] work?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜