0

我得到了ios应用程序UITableView

我在这个表中自定义了单元格,但是当对象数量低于屏幕上可见单元格时,所有其他单元格看起来就像简单的 UITableViewCells。

在此处输入图像描述

它应该看起来像这样

在此处输入图像描述

我应该如何自定义所有单元格?

数据源的UPD代码:

pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.

    return [dataBase.showMaps count];

}

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{

    return 70;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    ShowMapCell *cell = (ShowMapCell*) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {
        cell = [[ShowMapCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    // Configure the cell...

    ShowMap *sM = [dataBase.showMaps objectAtIndex:indexPath.row];

    //cell.textLabel.text = sM.name;

    [cell initShowMapCell:sM index:indexPath.row];

    return cell;
}
4

2 回答 2

0

如果您希望 UITableView 没有“空单元格”,则需要隐藏单元格分隔符并更改 tableview 的背景颜色以匹配您的配色方案。

正如 katzenhut 在评论中所说,它们不是单元格,它们是内容的占位符。因此,如果您隐藏分隔符并将它们添加到 UITableViewCell ShowCell 的 xib 文件中,那么当表格中没有要放置的单元格时,它们将不再可见。

于 2013-03-20T12:15:11.153 回答
0

您可以只设置表格视图的背景颜色。但是,该解决方案不起作用,因为您为每个单元格使用不同的背景。

所以根据我的说法,要实现你想要的,你需要向表中添加一些额外的(空白)行,为此你需要返回你的记录 + 额外的单元格(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section方法。除此之外,您需要将表格视图的背景颜色设置为单元格背景之一,因为如果您在表格视图中使用弹跳效果,则在向上/向下滚动表格视图时会发现白色。

于 2013-03-20T12:18:02.267 回答