0
我有應用程序,通過網頁播放視頻的iOS MPMoviePlayer(恢復播放後,應用程序被激活)
一切正常
但是當用戶離開應用程序用於閱讀電子郵件或任何
回來玩家走了!大問題
所以,我想用戶的簡歷看後回來的應用程序
這裏是我到目前爲止的代碼
[[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");
}
的知道我使用[個體經營presentMoviePlayerViewControllerAnimated:theMovie];鑑於不打
應該就是代碼的作品,但沒有任何工程
請幫助
在此先感謝