public override void RowSelected(UITableView tableView, NSIndexPath indexPath) { // // called when a specific row is selected, so // push a detail view to show the complete contact // DetailContactView detailView = new DetailContactView(parent.list[indexPath.Row]); parent.NavigationController.PushViewController(detailView, true); }
public override void RowSelected (UITableView tableView, NSIndexPath indexPath) { // // called when a specific row is selected, so // push a detail view to show the complete contact // DetailContactView detailView = new DetailContactView(parent.list[indexPath.Row]); parent.NavigationController.PushViewController(detailView, true); }