public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
        {
            var cell = tableView.DequeueReusableCell(tzSelectionCell.Key) as TimeZonesTabeViewCell;

            if (cell == null)
            {
                cell = new TimeZonesTabeViewCell();
            }

            return cell;
        }
Beispiel #2
0
        public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
        {
            var cell = tableView.DequeueReusableCell(tzSelectionCell.Key) as TimeZonesTabeViewCell;

            if (cell == null)
            {
                cell = new TimeZonesTabeViewCell();
            }

            return(cell);
        }