在 Core Data 中使用换行符并在 iPhone 中正确显示

发布于 2024-09-11 17:28:28 字数 305 浏览 2 评论 0原文

我将一系列事物存储在存储在核心数据数据库中的一个字符串中。例如..存储的字符串看起来像@“apple \n pear \n Orange”。我正在使用 UITextView 来显示列表,我希望它显示为:

  • 苹果

..但它只显示: 苹果 \n 梨 \n 橙色

有人知道如何让它尊重换行符吗? 我正在像这样设置 UITextView 的文本。列表等于“苹果\n梨\n橙”

myTextView.text = fruits.list;

I'm storing a list of things in one string stored in a core data database. For example.. the stored string would look like @"apple \n pear \n orange". I'm using a UITextView to display the list and I want it to display like:

  • apple
  • pear
  • orange

..but it just displays:
apple \n pear \n orange

Anyone know how to get it to honor the newline characters?
I'm setting the UITextView's text just like this. list is equal to "apple \n pear \n orange"

myTextView.text = fruits.list;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

韬韬不绝 2024-09-18 17:28:28

发生这种情况是因为 xcode 将“\n”作为文字字符串 \n。
你必须有 2 个 \,因为第一个是转义字符,它会告诉 xcode 你的 \ 不是字符串。它看起来像:

NSString @"apple \\n pear \\n orange";

this is happening because xcode takes "\n" as a literal string \n.
You have to have 2 \'s because the first is an escape character that will tell xcode that your \ is not a string. It looks like:

NSString @"apple \\n pear \\n orange";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文