我有一个 UITableView,我在其中显示了一堆自定义单元格。单元格的高度配置为 50 像素:
我在 heightForRow 方法中重新调整 50:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 50.f
}
但最后,每个单元格之间有一个奇怪的 10-15ish 像素填充/间距:
我究竟做错了什么?
谢谢!