可以设置分割线的高度并填充颜色。
- (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)); }
时间: 2024-10-25 15:59:23