I want to add MPMoviePlayerController
to a UIView
.
first, I put a view in xib file, named youTubeView. youtubePlayer is the MPMoviePlayerController
.
[youtubePlayer.view setFrame:youTubeView.frame];
[youTubeView addSubview:youtubePlayer.view];
[youtubePlayer play];
I want the view of youtubePlayer overlay on youTubeView. but the view of youtubePlayer goes wide, it just overlay a part of youTubeView. why ?