使用:
- iOS 5、ARC、故事板。
每个单元格上都有 1 个图像和文本。滚动时图像不会调整大小。有两个版本的图像 image.png 和 image@2x.png。
自定义单元格是通过在情节提要中使用 UIImageView 和 UILabel 来管理的。
代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
Continent *continent=[self.items objectAtIndex:[indexPath row]];
ContinentCell *cell = (ContinentCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell.continentName.text=continent.continentName;
cell.textView.text=continent.countriesHash;
cell.imageView.image=[UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:continent.continentImage ofType:@"png"]];
return cell;
}
邪恶在哪里?先感谢您。