在 Core Data 中使用换行符并在 iPhone 中正确显示
我将一系列事物存储在存储在核心数据数据库中的一个字符串中。例如..存储的字符串看起来像@“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发生这种情况是因为 xcode 将“\n”作为文字字符串 \n。
你必须有 2 个 \,因为第一个是转义字符,它会告诉 xcode 你的 \ 不是字符串。它看起来像:
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: