I am downloading UITextView contents from a web server and it just returns text without any line feeds. I inserted \n, \\n, [CR], and more into the place I want to change the line but none of these worked. How can I change the line for the text in UITextView?
| ||||
|
feedback
|
|
Weird. Works for me.
Perhaps something goes wrong when you convert the C string into an NSString? Are the linefeeds still in the NSString? | |||
|
feedback
|
|
If your text that you want to display is dynamic and the width of text view is fixed then you can first calculate the height of textview according to the text and then display that text in text view. This will automatically change the line in the text view Code that I used:-
| |||
|
feedback
|
UITextViewand set its text to a string that has line feeds, the text is displayed in separate lines. There's no way for anyone to tell what your trouble is unless you post your code. – Jacques Cousteau Mar 22 '11 at 1:16