iPhone:表格视图分隔符

发布于 2024-11-12 01:56:10 字数 302 浏览 0 评论 0 原文

我知道iPhone SDK可以为TableView分隔符设置颜色,如下所示:

myTableView.style = UITableViewStylePlain;
myTableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
myTableView.separatorColor = [UIColor blackColor];

Is there any way to setgradient color to seperator ?谢谢...

I know that iPhone SDK can set a color to the TableView separator like this:

myTableView.style = UITableViewStylePlain;
myTableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
myTableView.separatorColor = [UIColor blackColor];

Is there any way to set gradient color to separator ? Thanks...

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

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

发布评论

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

评论(2

弃爱 2024-11-19 01:56:10

您可以将分隔符样式设置为UITableViewCellSeparatorStyleNone,并在每个单元格的底部应用一条宽的线,这是一个渐变。

唯一的问题是,当表视图具有简单样式时,在单元格数量少于屏幕上显示数量的表视图上,它可能看起来很奇怪,但我不知道如何解决这个问题。

You can make the separator style UITableViewCellSeparatorStyleNone and apply a one point wide line to the bottom of each cell, which is a gradient.

The only problem is that it might look odd on tableviews with fewer cells than fit on the screen when the table view has a plain style, but I don't know how to fix that.

海的爱人是光 2024-11-19 01:56:10

您可以绘制 TableViewCells(请参阅 Loren Brichter 的快速滚动< /a>),然后将渐变绘制添加到您的 drawContentView: 实现中。有关渐变绘制的详细信息,请参阅 CGContext 文档。

这样做的一个很大的副作用是你的表格视图滚动变得非常快......但是你必须绘制你的单元格,如果你的单元格具有非常复杂的视图层次结构(无论如何你应该避免),这可能会变得复杂。

You could draw your TableViewCells (see Loren Brichter's fast scrolling) and then add gradient drawing to your drawContentView: implementation. For details on gradient drawing, see the "Drawing with a gradient" section of the CGContext documentation.

A great side effect of this is that your tableview scrolling becomes crazy fast... but you have to draw your cells, which can get complex if your cells have very complicated view hierarchies (which you should avoid anyway).

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