There's a call CGContextSetLineWidth, but I don't see a corresponding CGContextGetLineWidth or even a CGContextLineWidth. How can I get the current width set in the context? I need to know what this is for my draw routines in a library.
|
feedback
|
|
In a newly created context, the line width is always 1. Can you just keep track of the line width manually whenever it is changed within your library by using using a variable? | |||||||
feedback
|