I have a view with two UITextView elements in it, each of which is tied to an outlet in the controller. The content for these is coming from a database, and is sometimes short an other times long. I want it to look like it would in html, with <p>content1</p><p>content2</p>
, such that the distances from the end of content1 to beginning of content2 is fixed, but content2 gets shifted down the page if content1 is long.
Seems like a very basic requirement but I can't quite figure out how to do it with Interface Builder. Would appreciate any help.
Thanks