NSURL *url= [NSURL URLWithString:@"http://www.dailymotion.com/video/x109z02"];
MPMoviePlayerController *theMoviPlayer = [[MPMoviePlayerController alloc] initWithContentURL:url];
theMoviPlayer.scalingMode = MPMovieScalingModeFill;
theMoviPlayer.view.frame = CGRectMake(0, 60, 320, 350);
[self.view addSubview:theMoviPlayer.view];
[self.theMoviPlayer play];
フレームワークも追加され、.h ファイルにインポートされますが、ビデオは iphone で再生されません (インターネット接続も問題ありません)。