I have a busy layout and I want all the information on the screen, but divided by the functional equivalent of <hr> in an HTML layout.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You can just use a 1px high UIView and set the background color to whatever you want.

Or the harder way using Core Graphics.

link|improve this answer
What if the UX reviewers want some border style? Is using a UITextField and disabling the user interaction too much of a hack? – mobibob Aug 22 '11 at 18:54
@mobibod: Not sure I understand. Are you suggesting using a UITextField for a separator? Also, if you have specific requirements, please include them in the question - you will get better answers this way. – Evan Mulawski Aug 22 '11 at 18:56
Sorry for the frustration - I thought the reference to <HR> in HTML would suffice. For example, it has many attributes for border style, etc. Unfortunately, I have vague requirements to begin with and I did not escape the <HR>, so instead I got an <HR> in my question. I will fix the description. – mobibob Aug 22 '11 at 20:20
@mobimob: (I knew it was a horizontal rule.) You can apply border styles to a UIView by accessing its layer property. See the docs on CALayer. – Evan Mulawski Aug 22 '11 at 20:21
Good point. I like that answer. I am using a UITextField and disabling the user interaction, making it really thin and no text. I prefer the UIView under this circumstance. – mobibob Aug 23 '11 at 18:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.