Esempio n. 1
0
        public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
        {
            var cell = (SpotNewsCell)tableView.DequeueReusableCell ("inboxrow");

            if (cell == null)
                cell = new SpotNewsCell("inboxrow");

            cell.ReloadUI(this, tableView);

            return cell;
        }
Esempio n. 2
0
        public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
        {
            var cell = (SpotNewsCell)tableView.DequeueReusableCell("inboxrow");

            if (cell == null)
            {
                cell = new SpotNewsCell("inboxrow");
            }

            cell.ReloadUI(this, tableView);

            return(cell);
        }