我想创建从屏幕顶部掉落到底部消失的随机图像。到目前为止,我已经能够在固定的生成点(中心)使 1 张图像掉落,但我不确定如何在顶部的随机位置生成更多生成的图像(有点像降雪或降雨效果)。
这是我到目前为止所拥有的:
-(void) viewDidLoad {
moveObjectTimer = [NSTimer scheduledTimerWithTimeInterval:0.01 target:self selector:@selector(moveObject) userInfo:nil repeats:YES]; }
-(void) moveObject { // + means down and 5 is SPEED
bird.center = CGPointMake(bird.center.x, bird.center.y +5); }