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的主要内容,如果未能解决你的问题,请参考以下文章

自定义 TableView 滚动指示器 (iOS)

iOS tableView分割线高度自定义

在 iOS 的 ISearchResult TableView 中显示自定义背景图片

iOS TableView如何访问自定义单元格变量

iOS自定义全屏返回与tableView左划删除手势冲突解决

IOS xib在tableview上的简单应用(通过xib自定义cell)