public override void WillDisplayNode(ASTableView tableView, ASCellNode node, NSIndexPath indexPath)
 {
     WillDisplayCell?.Invoke(indexPath.Section, indexPath.Row);
 }
Example #2
0
 public void WillDisplay(UITableView tableView, UITableViewCell cell, NSIndexPath indexPath)
 {
     WillDisplayCell?.Invoke(tableView, cell, indexPath);
 }