如何在textView中逐行显示文本?

时间:2012-01-11 13:48:44

标签: ios4

所有

textViewObj.text = @“已更新我的兴趣,更新了基础知识,注册                 更新我的伴侣应该......“

如何在textview中逐行添加上述信息?

请帮帮我。  提前谢谢。

1 个答案:

答案 0 :(得分:0)

使用换行符分隔每一行,即

@"\\n" 

在可可。注意双反斜杠

textViewObj.text=@"updated My interests \\n updated Basics \\n registration updated My partner should be..."

如果您有太多逗号要替换,请执行此操作

NSString *stringSeparatedByNewLine = [stringWithCommas stringByReplacingOccurrencesOfString:@"," withString:@"\\n"];

textViewObj.text=stringSeparatedByNewLine;