iOS tableView 自定义sepatator
Posted 听风gcl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS tableView 自定义sepatator相关的知识,希望对你有一定的参考价值。
可以设置分割线的高度并填充颜色。
- (void)drawRect:(CGRect)rect { CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSetLineWidth(context, 2.0); CGContextSetFillColorWithColor(context, [UIColor clearColor].CGColor); CGContextFillRect(context, rect); CGContextSetStrokeColorWithColor(context, ViewBgColor.CGColor); CGContextStrokeRect(context, CGRectMake(0, rect.size.height - 2, rect.size.width, 2)); }
以上是关于iOS tableView 自定义sepatator的主要内容,如果未能解决你的问题,请参考以下文章
在 iOS 的 ISearchResult TableView 中显示自定义背景图片