gpt4 book ai didi

iphone - iPhone 3.0 操作系统应用程序在 iPhone 4.0 操作系统中运行时崩溃的视频

转载 作者:行者123 更新时间:2023-12-03 21:22:49 26 4
gpt4 key购买 nike

我在 iPhone 4.0 操作系统中播放视频时遇到崩溃问题。实际上,我已经使用基础 SDK 3.0 创建了应用程序,现在我只是将应用程序安装到 4.0 操作系统设备。

它不起作用......我已经调试了这个问题,发现在4.0操作系统中,苹果改变了播放视频的框架和方法。

谁能帮我解决这个问题。

这是我的代码,在 3.0 操作系统中运行良好。

-(void)play
{
NSBundle *bundle = [NSBundle mainBundle];
//NSString *path = [bundle pathForResource:@"Icon" ofType:@"png"];
NSString *path = [bundle pathForResource:@"loader" ofType:@"m4v"];
NSURL *url = [NSURL fileURLWithPath:path];
moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:url];
moviePlayer.scalingMode = MPMovieScalingModeAspectFill;

[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(moviePlayBackDidFinish:)
name:MPMoviePlayerPlaybackDidFinishNotification
object:moviePlayer];
moviePlayer.movieControlMode = MPMovieControlModeHidden;
[moviePlayer play];
}

提前致谢,普拉格尼什

最佳答案

对于iOS4,您需要使用MPMoviePlayerViewController。我发布了我的working code sample here .

关于iphone - iPhone 3.0 操作系统应用程序在 iPhone 4.0 操作系统中运行时崩溃的视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3191893/

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