电影播放小而不是全尺寸

时间:2011-09-01 09:33:22

标签: iphone ios mobile sdk

我正在开发一个iphone应用程序,我有一个uiwebview,页面上有一个视频。当我按下播放时,视频将以全屏模式播放。有没有办法可以实现这一点,当我按下播放时,视频以自定义尺寸而不是全屏播放?

1 个答案:

答案 0 :(得分:0)

使用MPMoviePlayerController

来自Apple:

MPMoviePlayerController *player =
        [[MPMoviePlayerController alloc] initWithContentURL: myURL];
[player prepareToPlay];
[player.view setFrame: myView.bounds];  // player's frame must match parent's
[myView addSubview: player.view];
// ...
[player play];