Selected() public method

public Selected ( NSIndexPath indexPath ) : void
indexPath NSIndexPath
return void
Beispiel #1
0
            public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
            {
                var onSelection = Container.OnSelection;

                if (onSelection != null)
                {
                    onSelection(indexPath);
                }
                Container.Selected(indexPath);
            }
 public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
 {
     Container.Selected(indexPath);
 }
 public override void RowSelected(UITableView tableView, MonoTouch.Foundation.NSIndexPath indexPath)
 {
     Container.Selected(indexPath);
 }