0

我正在使用 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];

我有以下屏幕截图:

在此处输入图像描述

4

1 回答 1

0

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

或者,可能songUrl是指没有定义开始或结束时间的 HTTP 实时流媒体流(如实时提要)。

于 2012-08-30T16:10:56.633 回答