0

私のムービープレーヤーに小さな問題が 1 つあります..![ムービープレーヤーはこのように表示されます]

1 : http://i.stack.imgur.com/WujxB.pngしかし、スクリーンショットの下に表示したいこんな風に見せたい

マイコード:

moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:videoURL];
moviePlayerController.view.frame = CGRectMake(0,0,320,460); 
moviePlayerController.fullscreen = YES; 
[self.view addSubview:moviePlayerController.view]; 
[moviePlayerController play];
4

2 に答える 2

2

を設定したため、これらはフルスクリーン再生のデフォルト コントロールですmoviePlayerController.fullscreen = YES

必要なコントロールは、フルスクリーンではなく埋め込み再生用です。

必要なのはmoviePlayerController.controlStyle = MPMovieControlStyleEmbedded;、ムービーがビューの 1 つに埋め込まれている場合にのみ使用できます。そうすれば、フルスクリーンと埋め込みの切り替えなど、必要なコントロールが得られます。

于 2011-06-21T10:30:33.333 に答える
0

を使用するMPMoviePlayerViewController代わりにを使用する必要がありますMPMoviePlayerController

于 2012-07-05T11:33:39.370 に答える