在 UITableViewStylePlain 中重现 UITableViewCellSeparatorStyleSingleLineEtched

发布于 2024-11-09 22:57:58 字数 103 浏览 0 评论 0原文

使用普通表格和自定义单元格时,如何重现与单线蚀刻相同的效果?

我想我需要将它们作为子视图添加到每个单元格中,不包括最后一个单元格。我想知道如何重现它而不必使用图像。有谁知道吗?

How can one reproduce the same effect as Single Line Etched when using plain table and custom cells?

I think I need to add them as subview to each cell, excluding the last one. I want to know how to reproduce that without having to use images to that. Does anyone know?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吾性傲以野 2024-11-16 22:57:58

即使对于单线蚀刻,分隔符不是只是单个像素灰线吗?

在这种情况下,创建一个 UIView 单元格的宽度,但只有一个像素高,然后设置它的背景颜色,然后将其粘贴在单元格内容视图的底部。

UIView *lineView;

lineView = [[UIView alloc] initWithFrame:CGRectMake(0.0f,
                                                    cell.contentView.bounds.size.height-1.0f,
                                                    cell.contentView.bounds.size.width,
                                                    1.0f);
lineView.autoresizingMask = UIViewAutoresizingFlexibleTopMargin;
lineView.backgroundColor = [UIColor grayColor];

[cell.contentView addSubview:lineView];

Isn't the separator just a single pixel grey line, even for Single Line Etched?

In this case, create a UIView the width of the cell, but only one pixel high and then set it's background colour,then stick it at the bottom of the cell's content view.

UIView *lineView;

lineView = [[UIView alloc] initWithFrame:CGRectMake(0.0f,
                                                    cell.contentView.bounds.size.height-1.0f,
                                                    cell.contentView.bounds.size.width,
                                                    1.0f);
lineView.autoresizingMask = UIViewAutoresizingFlexibleTopMargin;
lineView.backgroundColor = [UIColor grayColor];

[cell.contentView addSubview:lineView];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文