It can be cool to offer the possibility change the line color, because on white background, there is no line visible.
ex :
- (CALayer *)lineLayer
{
CALayer *lineLayer = [CALayer layer];
lineLayer.backgroundColor = [self.lineColor CGColor];
return lineLayer;
}