Let see that I have a string look like this:
NSString *longStr = @\"AAAAA\\nBBBBB\\nCCCCC\";
How do I make it so that the UILabel disp
In xCode 11, Swift 5 the \n works fine, try the below code:
\n
textlabel.numberOfLines = 0 textlabel.text = "This is line one \n This is line two \n This is line three"