使用最新的Xcode
,并使用ios 7
进行展开,使用UITableViewCell
,如下图所示,我看到白色边距我无法删除:
UITableViewCell
,但我很难知道
UITableViewCell
中的内容导致底部的白色间隙。
谢谢,答案 0 :(得分:0)
检查一下。
- (void)tableView:(UITableView *)tableView
willDisplayCell:(UITableViewCell *)cell
forRowAtIndexPath:(NSIndexPath *)indexPath
{
[cell setBackgroundColor:[UIColor clearColor]];
}
iOS 7中UITableViewCell的默认背景颜色为白色。