I have table source class and on row click I am calling below function to move to another controller but I want to pass some data.
controller.PerformSegue("backtorootviewsague",controller);
Does any knows how can I achieve it. I am new in monotouch and ios. I cannot figure out how to achieve this.
PrepareForSegueis the right place to do it. For example, if the controller that createsCustomerViewControlleris calledCustomerListViewController, override inCustomerListViewControllerthat method like the following:where
CustomerViewControllerhas a public property like the following:You could see this in action in Xamarin samples.
Hope that helps.