我需要在我的 iOS 应用程序中的多行 UITextView 中显示来自 JSON Webservice 的一些数据,但是当我在 textview 上使用字符串时,新行不起作用。
这是我正在使用的代码:
// Data Value from JSON = testing the data value \r\n Another \n liine maybe?
NSString *responseDataString = [dictRequestorDetails objectForKey:@"data"];
txtWorkflowDetails.text = responseDataString;
当我执行此代码时 UITextField 显示
测试数据值 \r\n 可能是另一个 \n 线?
但是,如果我输入这样的字符串
// Data Value from JSON = testing the data value \r\n Another \n liine maybe?
NSString *responseDataString = [dictRequestorDetails objectForKey:@"data"];
txtWorkflowDetails.text = @"testing the data value \r\n Another \n liine maybe?";
换行符然后在 TextView 中工作