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
You have to set the numberOfLines property on the UILabel. The default is 1, if you set it to 0 it will remove all limits.
numberOfLines
UILabel