我已经定制了组表格单元格背景,我使用下面的代码来绘制表格单元格边框。边框显示正确,但始终显示实线。反正有没有蚀刻/虚线?我需要在以下代码中修改什么?
-(void)drawRect:(CGRect)rect {
CGContextRef c = UIGraphicsGetCurrentContext();
CGContextSetStrokeColorWithColor(c, [borderColor CGColor]);
CGContextSetLineWidth(c, 2);
.....
感谢。