Example #1
0
        public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
        {
            if (cell == null) {
                cell = new InnerCell("webviewcell", tableView);
            }

            cell.ReloadUI(this, tableView);

            return cell;
        }
Example #2
0
        public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
        {
            var cell = (InnerCell)tableView.DequeueReusableCell ("questionlistcell");

            if (cell == null)
                cell = new InnerCell("questionlistcell");

            cell.ReloadUI(this, tableView);

            return cell;
        }
Example #3
0
        public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
        {
            if (cell == null)
            {
                cell = new InnerCell("webviewcell", tableView);
            }

            cell.ReloadUI(this, tableView);

            return(cell);
        }
Example #4
0
        public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
        {
            var cell = (InnerCell)tableView.DequeueReusableCell("answerlistcell");

            if (cell == null)
            {
                cell = new InnerCell("answerlistcell");
            }

            cell.ReloadUI(this, tableView);

            return(cell);
        }