我正在像这样从网络服务中检索数据
NSString *str_Txt = [rootElement stringValueForNode:@"info"];
NSLog(@"str_Txt is %@",str_Txt); // Data Receive
output:
str_Txt is \n\n\nInfo \n\n\nSebastian Vettel \n\n Alonso
我想当 \n 来的时候会断线
像这样
textview.text = [NSString stringWithFormat:@"%@", str_Txt];
NSLog(@"textview is %@",textview.text);
output: // supposing output
textview is
Info
Sebastian Vettel
Alonso
但问题是当我再次运行该代码输出时是这样的:
textview 是 \n\n\nInfo \n\n\nSebastian Vettel \n\n Alonso
线路没有断线。\n 不工作。
我想做这样的事情:
// textview.text =@"\n\n\nInfo \n\n\nSebastian Vettel \n\n Alonso";
textview.text = @""%@",[NSString stringWithFormat:@"%@", str_Txt]";
NSLog(@"textview is %@",textview.text);
这样我的输出就会像这样:
output: // 假设输出
textview is
Info
Sebastian Vettel
Alonso
任何想法,如何做到这一点?
提前致谢。