iPhone:表格视图分隔符
我知道iPhone SDK可以为TableView分隔符设置颜色,如下所示:
myTableView.style = UITableViewStylePlain;
myTableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
myTableView.separatorColor = [UIColor blackColor];
Is there any way to setgradient color to seperator ?谢谢...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将分隔符样式设置为
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.
您可以绘制 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).