vote up 0 vote down star

I have a simple app with a UITextView embedded into a UIScrollView. Interface Builder won't let me add multiple newlines for spacing; when I hit return it sees that as "end of input" rather than appending the newline to the UITextView.

How can I get it to accept newlines for spacing?

flag

3 Answers

vote up 3 vote down check

Much simpler (and more IB based) than previous answers: Just ALT+ENTER. It will send a newline to the UITextView.

link|flag
vote up 2 vote down

As sbwoodside said, a text editor is the easiest way.

That said, ff you need more control, or it isn't quite working, don't use IB. Ideally, if you need any type of formatting for a long sting of text, do it programmatically.

Formatting in IB is horrible. I tried to add some "terms and conditions" in a UITextView and it was a real pain.

In the end it is easier than messing with IB...

link|flag
vote up 2 vote down

Write up your text in TextEdit, then copy/paste it in.

link|flag
Ah, so simple. I used emacs, thanks. – Kaffeine Coma May 13 at 23:49

Your Answer

Get an OpenID
or

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