gpt4 book ai didi

iphone - 如何在iPhone中使用MPMoviePlayerController播放视频?

转载 作者:行者123 更新时间:2023-12-03 19:32:14 25 4
gpt4 key购买 nike

这是我使用 MPMoviePlayerController 加载视频的代码,我的问题是我可以听到视频的声音,但看不到视频。谁能给我解决办法!!!

注意:“AddRunningClient 在非零客户端计数上启动设备”当我在控制台中运行应用程序时会显示此消息

现在我正在使用IOS4.1 sdk

   - (void)viewDidLoad {
[super viewDidLoad];

NSString *mediaPath = [[[NSBundle mainBundle]resourcePath] stringByAppendingPathComponent:@"understandingoilcost_1500kbps.mov"];

MPMoviePlayerController *moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL fileURLWithPath:mediaPath]];

moviePlayer.scalingMode = MPMovieScalingModeAspectFit;

[moviePlayer play];
}

请帮帮我!

谢谢。

最佳答案

那是因为您还没有将玩家的 View 添加到您的 View 中。你需要做这样的事情:

[[moviePlayer view] setFrame:[[self view] bounds]];
[[self view] addSubview: [moviePlayer view]];

此外,您应该将电影播放器​​存储在实例变量中,否则您将无法停止或释放它(从而造成内存泄漏)。

关于iphone - 如何在iPhone中使用MPMoviePlayerController播放视频?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3922865/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com