How do I get a UITextView to use /n characters in strings as new lines?
For example, I want the string "Hello world!/nHow are you?" to appear in the UITextView as:
Hello World!
How are you?
But it instead appears as:
Hello World!/nHow are you?
...when I write myTextView.text = @"Hello world!/nHow are you?"