I'm drawing text in -drawRect with this method:
[someText drawInRect:rect withFont:font lineBreakMode:someLineBreakMode alignment:someAlignment];
I just want to draw the outline but not the fill!
I've found that I can set CGContextSetFillColorWithColor
and just provide an fully transparent color. But I fear this has bad performance impact because probably it does all the heavy drawing work behind the scenes with a transparent color.
Is there a way to just disable the fill-drawing if only outline-drawing is wanted?