Click here to Skip to main content
15,886,689 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I want to Draw a symbol and add text in UIImageView. when move it should move together. When it would get opened next time, it should be editable. pls needful for me
Posted

1 solution

You can draw into a UIView by accessing the CALayer (by the -layer method), and using the -DrawInContect: method to specify a CGContext to draw.

See the CGContext reference for functions that draw paths and text on CGContext.

If you want the symbol and text to move together, independent of some background image, then the best thing to do would be to put them on a transparent UIView that is on top of the UIImageView -- then you can just move the upper UIView around rather than redrawing the data.

As for making them editable, that up to you. Once you know how to create them, you can always throw them away and create new ones.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900