URL ベースのビデオの再生に問題があります。これは私のコードです:
-(void)clickplay
{
NSURL *fileURL = [NSURL URLWithString:@"http://km.support.apple.com/library/APPLE/APPLECARE_ALLGEOS/HT1211/sample_iTunes.mov"];
MPMoviePlayerController *moviePlayerController = [[MPMoviePlayerController alloc]initWithContentURL:fileURL];
[moviePlayerController.view setFrame:CGRectMake(0, 70, 320, 270)];
[self.view addSubview:moviePlayerController.view];
moviePlayerController.fullscreen = YES;
[moviePlayerController play];
}
それは正常にコンパイルされ、プレーヤーは飛び出しましたが、永遠にロードし続けます... URL を数回変更しようとしましたが、効果がありませんでした。誰でもこの問題を解決するのを手伝ってもらえますか?