I need to draw a horizontal line in a UIView. What is the easiest way to do it. For example, I want to draw a black horizontal line at y-coord=200.
I am NOT using Interface Builder.
I need to draw a horizontal line in a UIView. What is the easiest way to do it. For example, I want to draw a black horizontal line at y-coord=200.
I am NOT using Interface Builder.
The easiest way in your case (horizontal line) is to add a subview with black background color and frame
[0, 200, 320, 1]
.Code sample (I hope there are no errors - I wrote it without Xcode):
Another way is to create a class that will draw a line in its drawRect method (you can see my code sample for this here).
Add label without text and with background color corresponding frame size(ex:height=1). Do it through code or in interface builder.