Reputation:
When i push Back button on Navigation controller app is successfully return to the controller view, but dont stop video streaming.
I write:
- (void)viewDidUnload
{
[self setDescText:nil];
[super viewDidUnload];
[moviePlayerController stop];
[moviePlayerController.view removeFromSuperview];
// Release any retained subviews of the main view.
}
but not help.
Please, give me advice.
Upvotes: 1
Views: 183
Reputation: 8785
viewDidUnload
is only called in low-memory conditions. You want viewDidDisappear
.
- (void)viewDidDisappear:(BOOL)animated
UIViewController Class Reference
Upvotes: 4