如何在tableview中设置UITableViewCellSeparatorStyleNone?

时间:2015-11-04 08:52:38

标签: ios objective-c iphone xcode

当我将UITableViewCellSeparatorStyleNone设置为tableView时,分隔符视图是否仍然可见?

我设置了tableview的属性,

self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

在视图调试中我仍然在我的单元格中找到了一个UITableViewCellSeparatorView, 如何删除分隔符视图?

2 个答案:

答案 0 :(得分:1)

您可以在storyboard中的tableview中设置UITableViewCellSeparatorStyleNone。 在这里,我附上截图以获得更多说明。

How to set UITableViewCellSeparatorStyleNone

答案 1 :(得分:0)

因为细胞在呈现时被重用(使用 dequeueReusableCellWithIdentifier ):你必须为该单元使用不同的标识符。我也为它创建了一个自定义的UITableViewCell子类。

这是一个代码,我的最后一个单元格是一个特殊的单元格,它将加载X个更多的单元格。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    if (indexPath.row == lastIndex) {
        LoadingNextCellView *cell = [tableView dequeueReusableCellWithIdentifier:@"LoadingNextCell"];
        if (cell == nil) {
            cell = [[LoadingNextCellView alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"LoadingNextCell"];
        }
        cell.indexPath = indexPath;
        cell.titleLabel.text = [NSString stringWithFormat:@"Loading next %d trees..",PRELOAD_TREES];
        return cell;
    } else {
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
        if (cell == nil) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
        }
     }
     return cell; 
}

根据此逻辑定制您的单元格。