在 UITableViewStylePlain 中重现 UITableViewCellSeparatorStyleSingleLineEtched
使用普通表格和自定义单元格时,如何重现与单线蚀刻相同的效果?
我想我需要将它们作为子视图添加到每个单元格中,不包括最后一个单元格。我想知道如何重现它而不必使用图像。有谁知道吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
即使对于单线蚀刻,分隔符不是只是单个像素灰线吗?
在这种情况下,创建一个 UIView 单元格的宽度,但只有一个像素高,然后设置它的背景颜色,然后将其粘贴在单元格内容视图的底部。
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.