public override UITableViewCell GetCell(UITableView tv)
        {
            var cell = tv.DequeueReusableCell (cellId);
            count++;
            if (cell == null)
                cell = new TagCell (UITableViewCellStyle.Default, cellId, tag);
            else
                ((TagCell)cell).UpdateCell (tag);

            return cell;
        }
        public override UITableViewCell GetCell(UITableView tv)
        {
            var cell = tv.DequeueReusableCell(cellId);

            count++;
            if (cell == null)
            {
                cell = new TagCell(UITableViewCellStyle.Default, cellId, tag);
            }
            else
            {
                ((TagCell)cell).UpdateCell(tag);
            }

            return(cell);
        }