ViewController1.h
@interface ViewController : UIViewController
@property AVAudioPlayer *audioPlayer;
@end
ViewController1.m
@synthesize audioPlayer;
...
audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
[audioPlayer play];
クラスViewController2のメソッドから音楽を停止するにはどうすればよいですか?