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];
홈 버튼이 터치되면 플레이어가 멈 춥니 다. 홈 버튼을 터치 할 때 계속 놀고 싶습니다. 어떻게 해결할 수 있습니까?홈 버튼 터치 후 MPMoviePlayerController 재생하기
http://stackoverflow.com/questions/9292421/how-to-play-even-background-mode-using-mpmovieplayercontroller –