I am having a TableView on my home screen which is inside a Navigation Controller. Now, when a row is selected, I want to show a MapView.
I want to get access to the Nav
I wanted to navigate from IndexViewController To ViewController. I use the following code.
IndexViewController owner;
public override void RowSelected (UITableView tableView, NSIndexPath indexPath)
{
UIStoryboard board = UIStoryboard.FromName ("Main", null);
ViewController ctrl = (ViewController)board.InstantiateViewController ("viewControllerID");
owner.NavigationController.PushViewController (ctrl, true);
}