I would like the images to appear more randomly than they do with this code:
//placing images on the screen
-(void)PlaceImage {
RandomImagePosition = arc4random() %1000;
Image.center = CGPointMake(570, RandomImagePosition);
// the higher the number (570) the farther to the right the platforms appear
}
They appear in different positions but most of the time towards to top of the screen. There will be a few times when the image is placed towards the bottom of the screen. I would like there to be more randomness.