I need to draw some straight lines in a UIView which also contains a variety of UI elements. I need straight black lines about 1 or 2 points in width, easily drawn and redrawn with new start and end points. They need to interact with the Z-order of the UIView appropriately. (If each one has its own subview, this should work anyway.)
Bonus points for:
- Lines that have good anti-aliasing, especially over different colored backgrounds.
- Lines whose ends can fade to transparency over some specified length.
- Lines whose endpoints can be specified directly as a
CGPoint. - Colored lines.
- Lines which have built in support for receiving touch events.
- Lines that can redraw with a different width easily.
I don't have any code to show you because I thought I'd see what you guys thought was the best option before I tackled this. Let me know if you need additional information.
Thanks,
Luke