Had the same issue, I just forgot to set the delegate in viewDidLoad
public override void ViewDidLoad()
{
base.ViewDidLoad();
TableView.DataSource = new YourViewControllerTableDataSource();
TableView.Delegate = new YourViewControllerTableDelegate();
}