Added method to call the correct delegate one

This commit is contained in:
iherrera 2016-09-16 12:47:40 -03:00
Родитель 5494c04769
Коммит 0991ed3487
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -55,6 +55,12 @@ namespace GrowRowTable
{
return DataSource.RowsInSection(tableView, section);
}
public override void RowSelected(UITableView tableView, Foundation.NSIndexPath indexPath)
{
TableView.Delegate.RowSelected(tableView, indexPath);
}
// ---------------------------------------------------------------------------------------
#endregion
}