0

使用最新的Xcode,并为 开发ios 7,使用 a UITableViewCell,如下图所示,我看到无法删除的白边:

  1. 调整内容视图的大小,
  2. 移动灰度图像。白色边距仅出现在底部,而不是如图所示的顶部。有一种使用 uiview 而不是 a 的解决方法,UITableViewCell但我很想知道是什么UITableViewCell导致了底部的白色间隙。谢谢,

链接到图片

4

1 回答 1

0

检查这个。

- (void)tableView:(UITableView *)tableView
  willDisplayCell:(UITableViewCell *)cell
forRowAtIndexPath:(NSIndexPath *)indexPath
{
  [cell setBackgroundColor:[UIColor clearColor]];
}

iOS 7 中 UITableViewCell 的默认背景颜色是白色。

于 2013-10-01T11:26:18.960 回答