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
textLabel.text = @"\nAAAAA\nBBBBB\nCCCCC"; textLabel.numberOfLines = 3; \\As you want - AAAAA\nBBBBB\nCCCCC textLabel.lineBreakMode = UILineBreakModeWordWrap; NSLog(@"The textLabel text is - %@",textLabel.text);