UITableViewCell内容视图在按钮中具有意外的边距

时间:2013-10-01 10:03:34

标签: ios objective-c uitableview interface-builder

使用最新的Xcode,并使用ios 7进行展开,使用UITableViewCell,如下图所示,我看到白色边距我无法删除:

  1. 调整内容视图的大小,
  2. 移动灰色图像。白色边缘出现在底部 而不是在图片中的顶部。有一个使用a的工作 uiview而不是UITableViewCell,但我很难知道 UITableViewCell中的内容导致底部的白色间隙。 谢谢,
  3. Link to the image

1 个答案:

答案 0 :(得分:0)

检查一下。

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

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