2

我需要在我的 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 中工作

4

4 回答 4

3

刚刚关注了这篇文章:向 UITextView 添加换行符

我更新了我的 JSON 提要以输出新的行,例如

测试数据值 \n另一个 \nmline 可能吗?

然后在我的代码中运行;

responseDataString = [responseDataString stringByReplacingOccurrencesOfString:@"\\n" withString:@"\n"];
于 2012-10-23T11:04:15.393 回答
1

斯威夫特 4:

let stringForUITextView = originJsonString.replacingOccurrences(of: "\\n", with: "\n")
于 2018-08-26T17:58:35.547 回答
0

您可以先处理字符串并将所有出现的 \n 替换为 \n

NSString *newString = [responseDataString stringByReplacingOccurrencesOfString:@"\n" withString:@"\\n"];
于 2012-10-23T11:05:48.387 回答
0

txtWorkflowDetails 是否设置为允许换行(例如自动换行)?

于 2012-10-23T11:08:21.127 回答