Skip to content

Instantly share code, notes, and snippets.

Created June 30, 2010 11:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/458521 to your computer and use it in GitHub Desktop.
Save anonymous/458521 to your computer and use it in GitHub Desktop.
-(void)checkAnswer:(int)answer {
if(rightAnswer==answer)
{
//AudioServicesPlaySystemSound(_tweetSound);
score++;
}
else {
//AudioServicesPlaySystemSound(_barkSound);
}
[self updateScore];
}
Här får jag varningen:
Local decleration of "answer" hides instance variable.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment