hi
im trying to make an simple app and i where almost done
but then this error apear and i just cant figure out how to fix it !
Please help me im desperate?
the error says: expected ';' before '{' token
im trying to make an simple app and i where almost done
but then this error apear and i just cant figure out how to fix it !
Please help me im desperate?
the error says: expected ';' before '{' token
Code:
-(IBAction)playsound {
NSString *path = [[NSBundle mainBundle] pathForResource:@"ljudeffectha" ofType:@"wav"];
AVAudioPlayer* myAudio=[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
myAudio.delegate = self;
myAudio.volume = 2.0;
myAudio.numberOfLoops = 1;
[myAudio play];
@end
Comment