gpt4 book ai didi

ios - TableViewCellSeparator 不显示

转载 作者:行者123 更新时间:2023-11-29 01:05:57 25 4
gpt4 key购买 nike

我在 ViewController 中得到了一个 UITableView。UITableViewCell 是自定义单元格。

我将分隔符设置为“单行”颜色为“黑色”。

启动应用程序,分隔符不显示。即使在滚动时也不行。

目前代码非常基础,因为我还没有做太多设置。

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

let cell:createGroupCell = self.table.dequeueReusableCellWithIdentifier("Cell") as! createGroupCell

cell.nameLbl.text = "HELLOOO"

return cell
}

休息是标准的。也没有对我的 createGroupCell 做任何事情。

有什么想法吗?

最佳答案

我会发表评论,但我没有足够的声誉。但是,您可以尝试添加一个黑色的自定义分隔符,看看这是否可以解决您的问题,如果这不起作用,那么@MSU_Bulldog 可能是正确的,因为高度高于您的自定义单元格类。

如果您需要黑色分隔符的代码:

UIView *separator = [[UIView alloc] initWithFrame:CGRectMake(0, cell.contentView.frame.size.height - 0.5, cell.contentView.frame.size.width, 1)];
separator.backgroundColor = [UIColor blackColor];
[cell.contentView addSubview:separator];

希望这有帮助 - 干杯

关于ios - TableViewCellSeparator 不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36363029/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com