Is it possible to take a path draw in an UIView with CGPath and export it as a PNG?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Assuming you want a UIImage, not a png file, you can do something like this:
|
|||
|
|
The cleanest way to do that is to perform the whole drawing again in an image context produced by Note that UIView do not "hold" images. You can rerender a UIView's layer, but it's a gross violation of MVC (you're using views to store model data!), and it doesn't look clean to me. |
|||
|
|