Hello,
would someone be able to help me with this code please?
The image welldone.png shows a blank text field since the iOS8 upgrade?
The game plays levels and runs like this:
Audio plays: "Place dog on chair." > User drags dog on chair > Audio plays: "You got it right. Well done." > SMS alert shows image: blank text field shows, but should show the image welldone.png.
Here's the code. Sorry for no code tags, but I wasn't sure how to add this on this forum.
- (IBAction)showMessage:(id)sender { UIImage *backgroundImage = [UIImage imageNamed:@"welldone.png"]; self.message = [[KLPAAlert alloc] initWithImage:backgroundImage text:@"Well Done"]; [[SimpleAudioEngine sharedEngine] preloadEffect:@"gotitright.mp3"]; [[SimpleAudioEngine sharedEngine] playEffect:@"gotitright.mp3"]; [self.message show]; [self.view addSubview:self.nextButton]; [self performSelector:@selector(hideAlert) withObject:nil afterDelay:2.0]; }