movie playback small not full size
I am developing a iphone app and I have a uiwebview which has开发者_StackOverflow中文版 a video on the page. When I press play the video plays in full screen. Is there a way I can make it so when I press play the video plays in a custom size and not full screen?
Use MPMoviePlayerController
From 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];
精彩评论