상속: UITableViewCell
예제 #1
0
        EmptySectionCell GetSectionEmptyCell(UITableView tableView, NSIndexPath indexPath)
        {
            var cell = tableView.DequeueReusableCell(SECTION_EMPTY_CELL) as EmptySectionCell;

            if (cell == null)
            {
                cell = new EmptySectionCell(SECTION_EMPTY_CELL);
            }

            return(cell);
        }
        EmptySectionCell GetSectionEmptyCell(UITableView tableView, NSIndexPath indexPath)
        {
            var cell = tableView.DequeueReusableCell (SECTION_EMPTY_CELL) as EmptySectionCell;

            if (cell == null) {
                cell = new EmptySectionCell (SECTION_EMPTY_CELL);
            }

            return cell;
        }