I'd like to make some line breaks in an UITextView i saw in different topics here that @"\n" should work...
if i try :
textView.text = @"Hey \nDude !";
that's work fine ! But if my text come from a plist file (with a root type array)
textView.text = [NSString stringWithString:[timeCodeArray objectAtIndex:textNumber]];
the text in the plist is :
<string>Hey \nDude !</string>
the \n is written in the text and there is no new line breach...
did a make something wrong ?