ここからコード
ここまでコード
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; Country *country=[[self.items objectAtIndex:[indexPath section]] objectAtIndex:[indexPath row]]; CountryCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; cell.imageView.image=[UIImage imageNamed:country.countryFlag]; cell.countryName.text=country.countryName; cell.currencyCode.text=country.code; cell.currencyOriginalName.text=country.originalUnitName; return cell; }
ここまでコード