我有一张显示图像的表格,图像固定在单元格的四个边上。单元格的高度为200,但每个图像的单元格内部似乎都有黑色填充。我不知道填充来自哪里,因为我想如果我将图像固定到单元格上它不应该有任何填充?
注意:我是UITableViewCell的子类,所以“self”就是单元格本身
[self.thumbnail autoPinEdge:ALEdgeRight toEdge:ALEdgeRight ofView:self];
[self.thumbnail autoPinEdge:ALEdgeLeft toEdge:ALEdgeLeft ofView:self];
[self.thumbnail autoPinEdge:ALEdgeTop toEdge:ALEdgeTop ofView:self];
[self.thumbnail autoPinEdge:ALEdgeBottom toEdge:ALEdgeBottom ofView:self];
[self.thumbnail autoSetDimension:ALDimensionHeight toSize:200];
然后在UITableController里面我有
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 200;
}