我使用此代码在单元格内创建图像:
- (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"CellIdentifier"] autorelease];
switch (indexPath.row) {
...
case 5:
cell.imageView.image = [UIImage imageNamed:@"Search.png"];
break;
default:
break;
}
return cell;
}
如何在单元格中居中图像?我必须继承 UITableViewCell 吗?