当我将UITableViewCellSeparatorStyleNone
设置为tableView时,分隔符视图是否仍然可见?
我设置了tableview的属性,
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
在视图调试中我仍然在我的单元格中找到了一个UITableViewCellSeparatorView, 如何删除分隔符视图?
答案 0 :(得分:1)
答案 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;
}
根据此逻辑定制您的单元格。