Наследование: UITableViewCell
Пример #1
0
        MoveButtonCell GetMoveButtonCell(UITableView tableView, NSIndexPath indexPath)
        {
            var cell = tableView.DequeueReusableCell(MOVE_BUTTON_CELL) as MoveButtonCell;

            if (cell == null)
            {
                cell = new MoveButtonCell(MOVE_BUTTON_CELL);
            }

            return(cell);
        }
        MoveButtonCell GetMoveButtonCell(UITableView tableView, NSIndexPath indexPath)
        {
            var cell = tableView.DequeueReusableCell (MOVE_BUTTON_CELL) as MoveButtonCell;

            if (cell == null) {
                cell = new MoveButtonCell (MOVE_BUTTON_CELL);
            }

            return cell;
        }