I have table view similar to http://docs.xamarin.com/Recipes/iOS/Content_Controls/Tables/Handle_a_Row_Click/.
The data loaded in the table view exists of either categories or detail pages. In RowSelected, if it's a category the view is pushed and a new table view is loaded (it's the same view with different initializing).
When debugging or just running the app, all works fine but after a while (probably when the GC cleans up) the screen becomes black. The app is still running but obviously can only be killed at that point.
What could be the cause, and how can I fix this?
Is there a better way to have a recursive table view? If I keep the table view and just refresh data, the navigation controller will not be wired to go back.
Thanks!