我下载了MonoTouch示例'PlayMovieRecipe'并且运行完美。
然后我创建了一个带有“MoviePlayer”页面的小应用程序(使用Storyboard)。我从示例应用程序中复制了示例代码,但是当我运行它时,它似乎启动了电影播放器,但从未超越“正在加载......”。示例文件(sample.m4v)位于应用程序的根目录中。这是我使用的代码:
命名空间测试 { public partial class DetailViewController:UIViewController { MPMoviePlayerController moviePlayer; public DetailViewController(IntPtr handle):base(handle) { }
public override void ViewDidLoad ()
{
base.ViewDidLoad ();
this.btnPlayMovie.TouchUpInside += delegate {
moviePlayer = new MPMoviePlayerController (NSUrl.FromFilename ("sample.m4v"));
View.AddSubview (moviePlayer.View);
moviePlayer.SetFullscreen (true, true);
moviePlayer.Play ();
} ;
}
}
}
答案 0 :(得分:0)
在添加子视图之前,请尝试显式设置filetype(moviePlayer.SourceType = MPMovieSourceType.File;)。我还为播放器使用了一个框架,它可以更好地控制显示高度,宽度等,因为视频可以被挤压/缩放到全屏。此外,请确保您的视频在其设置中设置为“内容”(右键单击“构建操作”)。干杯!