I have a UITableViewSource class called CustomerTableSource:
public class CustomerTableSource : UITableViewSource {
public void DoSomething() {
// Need to access UITableView
}
}
I read that it is possible to access UITableView from UITableViewCell using Objective C (http://stackoverflow.com/questions/1110482/reference-from-uitableviewcell-to-parent-uitableview)
In Xamarin, is it possible to access UITableView from the UITableViewSource class?