MPMoviePlayerController中禁用了快进和计时器控制

时间:2012-08-29 08:46:27

标签: iphone objective-c mpmovieplayercontroller

我正在使用MPMoviePlayerController播放媒体。它工作正常,但快进和计时器控制已禁用。我有以下代码:

    moviePlayer =  [[MPMoviePlayerController alloc]initWithContentURL:songUrl];
    [moviePlayer.backgroundView setBackgroundColor:[UIColor blackColor]];   
    moviePlayer.controlStyle = MPMovieControlStyleDefault;
    moviePlayer.shouldAutoplay = YES;
    [moviePlayer setScalingMode:MPMovieScalingModeNone];
    [self.view addSubview:moviePlayer.view];
      [moviePlayer setFullscreen:YES animated:NO];

我有以下屏幕截图:

enter image description here

1 个答案:

答案 0 :(得分:0)

您没有向我们展示songUrl的外观,但从症状来看,我猜它指的是没有Content-Length标头的HTTP网址。因为iOS在读完文件之前无法确定文件长度,所以它没有显示的长度。

或者,也许songUrl指的是没有定义开始或结束时间的HTTP直播流(如实时订阅源)。