我想为 UITableView 单元格 imageView 设置边距或填充,我该怎么做?我heightForRowAtIndexPath
只能设置行高。如果我增加它,它只会放大单元格中的图像。
这是我的 cellForRow 方法
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellID = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID] autorelease];
cell.textLabel.numberOfLines = 1;
cell.textLabel.font = [UIFont systemFontOfSize:kSystemFontSize];
cell.accessoryType = UITableViewCellAccessoryNone;
cell.textLabel.textColor = [UIColor whiteColor];
}
cell.textLabel.text = [_dataArray objectAtIndex:indexPath.row];
cell.imageView.image = [UIImage imageNamed:[_imageArray objectAtIndex:indexPath.row]];
cell.backgroundColor = [UIColor clearColor];
return cell;
}
目前我只知道一种方法可以做到这一点 - 使用 Photoshop 或类似程序缩小图像的图像内容,同时保持不变。但是这种方法会花费很多时间,我想应该有更简单的方法来做到这一点。