Skip to content

Instantly share code, notes, and snippets.

@ciryon
Forked from anonymous/gist:458521
Created June 30, 2010 11:05
-(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