我正在尝试更改 UITableViewController 单元格中图像的位置。这是我的代码:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
UIImageView *cellImage = cell.imageView;
CGRect frame = cellImage.frame;
frame.origin.x = 4;
frame.origin.y = 2;
cell.backgroundColor = [UIColor lightGrayColor];
}
到目前为止,唯一有效的是背景颜色。有什么建议么?这是我现在拥有的屏幕截图:
现在图像居中,但我希望将它们移近一点,靠近单元格的左上角。