Iphone: video playing with sound only.video is not being viewed?

MPMoviePlayerController is simply a movie player, it does not actually handle displaying the movie, if that makes sense. You should only use MPMoviePlayerController if you need to embed the video into your own view hierarchy. It doesn't sound like you need to do that since you're playing it fullscreen and you made mention of custom controls, so instead, try using MPMoviePlayerViewController It does everything you need to load a movie from URL and display the video with native controls.

Simply instantiate MPMoviePlayerViewController with your URL and present it as a modal view, i. E MPMoviePlayerViewController *player = MPMoviePlayerViewController allocinitWithContentURL:NSURL urlWithString:moviePath; self presentModalViewController:player; player release.

MPMoviePlayerController is simply a movie player, it does not actually handle displaying the movie, if that makes sense. You should only use MPMoviePlayerController if you need to embed the video into your own view hierarchy. It doesn't sound like you need to do that since you're playing it fullscreen and you made mention of custom controls, so instead, try using MPMoviePlayerViewController.It does everything you need to load a movie from URL and display the video with native controls.

Simply instantiate MPMoviePlayerViewController with your URL and present it as a modal view, i.e. MPMoviePlayerViewController *player = MPMoviePlayerViewController allocinitWithContentURL:NSURL urlWithString:moviePath; self presentModalViewController:player; player release.

MPMoviePlayerController is simply a movie player, it does not actually handle displaying the movie, if that makes sense. You should only use MPMoviePlayerController if you need to embed the video into your own view hierarchy. It doesn't sound like you need to do that since you're playing it fullscreen and you made mention of custom controls, so instead, try using MPMoviePlayerViewController.

It does everything you need to load a movie from URL and display the video with native controls. Simply instantiate MPMoviePlayerViewController with your URL and present it as a modal view, i.e.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions