Iphone – Need help with UIText

iphonexcode

I'm trying to make it so that the text displays like

Alabama
Alaska
Arkansas
and so on.

I mostly just need help on how to make it go to the next line of text

lblText.text = @"Alabama:";

i tried doing @"Alabama:"
@"alaska:";

but it didn't work.

Any thoughts?

Best Solution

Use UITextView

UITextView *textView;
.......
textView.text = @"Alabama \nAlaska \nArkansas";