如何以编程方式移动背景图像

时间:2014-10-23 23:58:35

标签: ios

我正在使用Xcode 5.1.1单一视图应用程序

想想像Swing Copters这样的游戏。当直升机人飞起来时,背景云从屏幕上掉下来,让你产生直升机在空中飞舞的错觉。我需要以编程方式进行编写。

故事板的高度是568.所以我手动制作了一张2000长的图像。然后在我的 - (void)moveplatform方法的实现文件中,我添加了它并且它工作了

forest.center=CGPointMake(forest.center.x, forest.center.y +platformDown/7);
if (forest.center.y > self.view.bounds.size.height +forest.bounds.size.height/7) {
    forest.center=CGPointMake(forest.center.x, forest.center.y -600);
}

但是,我想以编程方式而不是手动方式执行此操作,因为我手动输入图像会对另一个视图控制器产生负面影响。

我如何以编程方式执行此操作?

0 个答案:

没有答案