Exemple #1
0
        public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
        {
            var cell = DequeCell(tableView, indexPath);

            var detail = WeatherDetails.GetDetail(indexPath.Row, Location, Settings.UomTemperature, Settings.UomSpeed, Settings.UomLength, Settings.UomDistance, Settings.UomPressure);

            cell.SetData(detail);

            return(cell);
        }