gpt4 book ai didi

iphone - iOS 4 + MPMoviePlayerController

转载 作者:行者123 更新时间:2023-12-03 18:56:16 28 4
gpt4 key购买 nike

我开发了可以在 iPad 和 iPhone 上运行的通用应用程序。我在此使用 MPMoviePlayerController 的一个组件。

现在 iOS4 已经发布了,今天我收到了一个坏消息,由于 MPMoviePlayerController 崩溃,我的应用程序被拒绝。

iDemoPlayer= [[MPMoviePlayerController alloc] initWithContentURL:aUrl];
[iDemoPlayer play];

这是我用于播放视频的 src 代码。

在 iPhone os 4.0 版本中我发现

"If you link a Universal application against iPhone SDK 3.2, you must be prepared to embed the movie player view in your interface when running on iOS 4 and later"

引用

http://developer.apple.com/iphone/library/releasenotes/General/RN-iPhoneSDK-4_0/index.html

你们能帮我吗,我还需要做什么更新才能再次被接受!!!!!!

谢谢

萨加尔

最佳答案

呃,Symbian 变量命名约定。

if ([MPMoviePlayerController instancesRespondToSelector:@selector(view)]) {
// Running on 3.2+
iDemoPlayer2 = [[MPMoviePlayerViewController alloc] initWithContentURL:aUrl];
// Assuming self is a UIViewController
[self presentMoviePlayerViewControllerAnimated:iDemoPlayer2];
// This line might be needed
[self.moviePlayer play];
} else {
iDemoPlayer= [[MPMoviePlayerController alloc] initWithContentURL:aUrl];
[iDemoPlayer play];
}

关于iphone - iOS 4 + MPMoviePlayerController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3130363/

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