ViewController1.h
@interface ViewController : UIViewController
@property AVAudioPlayer *audioPlayer;
@end
ViewController1.m
@synthesize audioPlayer;
...
audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
[audioPlayer play];
How can I stop the music from method in class ViewController2?