I need to draw on my uiview without using the drawrect method but i don't know how to get the graphics context dynamically at any point of time?
For example: I need to add a line when user selected the add line from from pop over in my toolbar.
|
|
|
This can't be done. You will have to have some kind of marker to indicate a new line and then call You will have to save state. Probably an array of lines added so that you can use it to draw the view when An alternative You can use an image view for this purpose. You can do this,
This way you won't have state but you simply add the line to the image. |
|||
|
|
|
Your view has no graphics context outside of If you need to dynamically add lines etc. to a view, you must first store the lines in an array or other structure, and then iterate that structure inside Alternatively, make each line a custom view itself (or a layer) and add it as a subview. |
|||
|
|