我不确定现在问这个问题是否合适。我正在表格视图上使用 Xcode 5(预览版)。现在的问题是,如果选择了我的表格视图,那么我group
在第一个单元格和表格的顶部边缘之间存在间隙。
适用视图委托的代码如下
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 8;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *simpleTableIdentifier = @"SimpleTableItem";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
}
cell.textLabel.text = [NSString stringWithFormat:@"cell %d",indexPath.row];
return cell;
}
当我group
在 xib 中选择时,下图
但是,如果我切换到plain
,表是正常的
对于这种情况的任何想法。我用谷歌搜索了它,但似乎那里什么都没有。这里欢迎任何帮助。