Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

up vote 1 down vote accepted

Use an NSNotification:

Put this where the user clicks stop music in ViewController2:

[[NSNotificationCenter defaultCenter] postNotificationName:@"stopMusic" object:nil];

and in ViewController1 should have this:

-(void)viewDidLoad:
{
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(stopTheMusic:) name:@"stopMusic" object:nil];
}

-(IBAction)stopTheMusic:(id)sender {
        [audioPlayer stop];
}

Good Luck!

share|improve this answer
Worked like a charm! You are the best. – user1561346 Jul 29 '12 at 18:48
@user1561346 No problem! Glad it helped! – VijayS. Jul 29 '12 at 18:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.