I'm trying to understand Quartz and getting the context you have to draw on. If I have a function where I create a context, but then I call another function to some other drawing to the same context, do I need to pass the context from the first method to the next? Or can I just use UIGraphicsGetCurrentContext() for any CG methods that require a context since I'm still drawing into the same context?
|
If you get application did finished launching notification i.e.
there onwards you can use UIGraphicsGetCurrentContext(); as per your usability. But before launch you can use context only in drawRect(); method. |
|||
|
|
|
The docs for UIGraphicsGetCurrentContext() say:
So after calling UIGraphicsPushContext() with the context you've created, your other methods can access that context with UIGraphicsGetCurrentContext(). If you're calling UIGraphicsGetCurrentContext() outside of drawRect: and haven't set a context explicitly with UIGraphicsPushContext(), the current graphics context is undefined—and certainly not safe to use. |
|||
|
|