MPMoviePlayerController vodPlayer = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL URLWithString:httpUrl]];
[vodPlayer.view setFrame:CGRectMake(0, 0, screen_width, screen_height)];
[self.view addSubview:vodPlayer.view];
[vodPlayer play];
When home button touch, the player was stopped.. I want to keep play when home button touch. How to solve it?
1)First of all MPMoviePlayerController is deprecated so try avoid using it. 2)If you are playing video, then there is no need of playing video when app is moved to background.
3)Use AVPLayer for playing video/Audio. 4)if you want to continue playing media in background mode, You must enable background mode in info.plist file.