Hi
I am writing to create a table view which on selection of the row goes to a detailed description of the row. I tried following the post but couldn't get it work . In my table source inside the row selected method i declared an event Rowtouched
if (RowTouched != null)
RowTouched (this, EventArgs.Empty);
tableView.DeselectRow (indexPath, true); // iOS convention is to remove the highlight
this.RowTouched += (sender, e) => {
p1.NavigationController.PushViewController(new page2(),true);
};
the code breaks when i try to do this . Can anyone help me how to fix this issue.