-1

我正在尝试使用相同的按钮来播放和停止我的广播流,我的按钮播放正常,然后当我按下它停止时,它只停止几秒钟然后再次开始播放。

这是我使用的代码。

- (IBAction)playStream:(id)sender {
self.buttonPressed.selected = !self.buttonPressed.selected;

NSString *urlAddress = @"http://67.159.28.74:8730";
NSURL *url = [NSURL URLWithString:urlAddress];

MPMoviePlayerController *player = [[MPMoviePlayerController alloc]initWithContentURL:url];


player.movieSourceType = MPMovieSourceTypeStreaming;



player.view.hidden = YES;

self.myPlayer = player;

[self.view addSubview:self.myPlayer.view];



if (player.playbackState == MPMoviePlaybackStateStopped){
    [self.myPlayer play];}
else if (player.playbackState == MPMoviePlaybackStatePlaying){
   [self.myPlayer stop];}

}

4

1 回答 1

0

Every time you press the button, a new instance of the movie player is created. Thus the check if (player.playbackState == MPMoviePlaybackStateStopped) will always return YES, and thus start the movie.

于 2013-05-01T03:45:20.613 回答