Is there an easy way to insert a paragraph break into a text field? I am storing a couple paragraphs of text in a plist and am using it to populate a label in a view. The text displays fine, but the formatting is non-existent. I was under the impression that you could force a paragraph break inline, but have tried including every variation I can think of (e.g. \n, "\u2028", \r, 0xE2 0x80 0xA8, U+2028, \p, (e280a8)). None of these work.
I realize this is a stupid question, but I've tried every variation I can think of and can't get it to work. Thanks for your help and patience.
PS - I also tried this bit of code,
based on developer doc, but it crashed.
Code:
NSString *descriptionString = [albumDescription componentsSeparatedByString:@"\n"];
descriptionLabel.text = descriptionString;