Skip to content

Commit

Permalink
Merge pull request BradLarson#1728 from shameister/master
Browse files Browse the repository at this point in the history
Swipe gesture to go back to list stops capturing, even when gesture is aborted.
  • Loading branch information
BradLarson committed Oct 12, 2014
2 parents 6597045 + bdf73ee commit f7d222f
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,14 @@ - (void)viewWillDisappear:(BOOL)animated
[super viewWillDisappear:animated];
}

- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];

// Note: I needed to start camera capture after the view went on the screen, when a partially transition of navigation view controller stopped capturing via viewWilDisappear.
[videoCamera startCameraCapture];
}

- (void)viewDidUnload
{
[super viewDidUnload];
Expand Down

0 comments on commit f7d222f

Please sign in to comment.