iPhone:自定义组表格单元格边框样式

时间:2011-09-26 16:21:10

标签: iphone border uitableview

我已经定制了组表格单元格背景,我使用下面的代码来绘制表格单元格边框。边框显示正确,但始终显示实线。反正有没有蚀刻/虚线?我需要在以下代码中修改什么?

 -(void)drawRect:(CGRect)rect {
    CGContextRef c = UIGraphicsGetCurrentContext();
    CGContextSetStrokeColorWithColor(c, [borderColor CGColor]);
    CGContextSetLineWidth(c, 2);
    .....

感谢。

1 个答案:

答案 0 :(得分:1)

请参阅CGContextSetLineDash here。这允许您设置各种破折号模式。