我有App,从网上播放视频
一切正常
但是当用户离开应用程序阅读电子邮件或其他任何内容时
然后让玩家走了!!大问题
所以,我想在回到应用程序后观看用户简历
这是我到目前为止的代码
[[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];不在视野中播放
该代码是否有效,但没有任何作用
请帮助
提前致谢
答案 0 :(得分:0)
答案很简单,编辑info.plist
添加背景能力,所需的背景模式,设置类别App播放音频
试试吧!