Cirrious.MvvmCross.Dialog.Touch.Dialog.Elements.StyledStringElement.GetCellImpl C# (CSharp) Method

GetCellImpl() protected method

protected GetCellImpl ( UITableView tv ) : UITableViewCell
tv UITableView
return UITableViewCell
        protected override UITableViewCell GetCellImpl (UITableView tv)
        {
            var key = GetKey ((int) Style);
            var cell = tv.DequeueReusableCell (key);
            if (cell == null){
                cell = new UITableViewCell (Style, key);
                cell.SelectionStyle = UITableViewCellSelectionStyle.Blue;
            }
            PrepareCell (cell);
            return cell;
        }