I want to play a different alert sound if the multiple choice option answer is correct or wrong. I have code for the correct and wrong answer as follows
if (questionNumber == 1) {
[self correctAnswer];
}
if (questionNumber == 2) {
[self wrongAnswer];
}
I have created the correct IBAction Alert code. can I create a simple play.alert statement under either the correct or wrong answer?