xcode动画球iphone问题横向模式
大家好,我是法国人,请原谅我的英语。我的问题是,我正在纵向模式下在屏幕上制作一个球的动画,但现在我想在横向模式下做同样的事情。一切正常,但当球击中 iPhone 的一侧时,它会穿过它。这段代码不起作用我认为问题出在 x 和 y 上。
if (ball1.center.x > 480 ||ball1.center.x < 0){ ajout.x = -ajout.x; } if (ball1.center.y > 320 ||ball1.center.y < 0){ ajout.y = -ajout.y;
Hi everyone I'm french so scuse me for my english. My problem is that I'm animating a ball on the screen in portrait mode, but now I want do to the same thing in landscape mode. Everything work but when the ball hit a side of the iphone it go throught it. this code doesn't work I think that the problem is about x and y.
if (ball1.center.x > 480 ||ball1.center.x < 0){
ajout.x = -ajout.x;
}
if (ball1.center.y > 320 ||ball1.center.y < 0){
ajout.y = -ajout.y;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你的问题是 x 和 y 。在纵向模式下,x 为 480,y 为 320 是正确的。但是在横向模式下,这两个值是相反的。
试试这个代码;
这应该返回屏幕的正确边界(纵向 320x480,横向 480x320)并检查这些值。
干杯。
Yes your problem is with the x and y. In portrait mode that is correct with x being 480 and y being 320. However in landscape the two values are reversed.
Try this code instead;
This should return the propery bounds of your screen (320x480 in portrait, 480x320 in landscape) and check against those values.
Cheers.