Inheritance: UITableViewCell
示例#1
0
        ReviewButtonCell GetReviewButtonCell(UITableView tableView, NSIndexPath indexPath)
        {
            var cell = tableView.DequeueReusableCell(REVIEW_BUTTON_CELL) as ReviewButtonCell;

            if (cell == null)
            {
                cell = new ReviewButtonCell(REVIEW_BUTTON_CELL);
            }

            return(cell);
        }
        ReviewButtonCell GetReviewButtonCell(UITableView tableView, NSIndexPath indexPath)
        {
            var cell = tableView.DequeueReusableCell (REVIEW_BUTTON_CELL) as ReviewButtonCell;

            if (cell == null) {
                cell = new ReviewButtonCell (REVIEW_BUTTON_CELL);
            }

            return cell;
        }