ArcGISRuntimeXamarin.CategoriesViewController.CategoryDataSource.RowSelected C# (CSharp) Method

RowSelected() public method

public RowSelected ( UITableView tableView, NSIndexPath indexPath ) : void
tableView UITableView
indexPath NSIndexPath
return void
			public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
			{
				try
				{
					var selected = data[indexPath.Row];
					controller.NavigationController.PushViewController(new SamplesViewController(selected), true);
				}
				catch (Exception ex)
				{
					Console.WriteLine(ex.Message);
				}
			}
		}
CategoriesViewController.CategoryDataSource