user1135750
user1135750

Reputation:

Back button on Navigation controller dont stop video streaming (IOS)

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

Answers (1)

jnic
jnic

Reputation: 8785

viewDidUnload is only called in low-memory conditions. You want viewDidDisappear.

- (void)viewDidDisappear:(BOOL)animated

UIViewController Class Reference

Upvotes: 4

Related Questions