views:

20

answers:

2

How do I place a small paragraph within a text field or label? Do I use code for the new line? I'm using Interface Builder with Xcode.

A: 

You must mean more than one paragraph, because a single paragraph doesn't need a new line. Just copy it out of a text editor and paste it in.

JWWalker
A: 

You could also try using an Text View (NSTextView/UITextView) instead of a text field or a label.

Abizern