Hi, everyone!
I've got an application on Xamarin.iOS with couple of ViewControllers. It's logic is like:
ViewController A => ViewController B => TableViewController C => TableViewController D => A
This way repeated a lot. And that is the problem. When I call this pages nearly 100 times my application fall without any exception in debug mode.
I've tried to use PopToRootViewController(true) and PopToViewController(A, true) to move from D to A and the result is the same.
I've also noted, that if I turn off background images on my pages it takes more time, nearly 200 to fall.
By the way I've checked NavigationController.ViewControllers, when I return to A it's count = 1.
Doeas anyone face this issue too or may be you could give me an advice what should I do with this?