Example #1
0
            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);
            }
Example #2
0
			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);
			}