0

我有应用程序,正在播放来自网络的视频

一切正常

但是当用户离开应用程序阅读电子邮件或任何东西时

回来的球员走了!大问题

所以,我希望用户在回到应用程序后继续观看

到目前为止,这是我的代码

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didEnterBackground) name:UIApplicationDidEnterBackgroundNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didEnterforground) name:UIApplicationWillEnterForegroundNotification object:nil];

方法

- (void) didEnterBackground
{
[theMovie.moviePlayer pause];
NSLog(@"Playing pause");
}

- (void) didEnterforground
{
[theMovie.moviePlayer play];
NSLog(@"Playing resume");
}

知道我使用 [self presentMoviePlayerViewControllerAnimated:theMovie]; 不在视野范围内播放

如果那是代码有效,但是没有任何效果

请帮忙

提前致谢

4

1 回答 1

0

答案很简单,编辑info.plist。
添加后台权限,需要的后台模式,设置类别App播放音频

试试看!

于 2013-04-04T17:44:24.033 回答