将换行符替换为
;在 UIWebView 中使用
我正在从 sqlite 中提取数据并尝试在 UIWebView 中显示它
我已经尝试过
HTMLData = [container stringByReplacingOccurrencesOfString:@"\n" withString:@"<br />"];
HTMLData = [HTMLData stringByReplacingOccurrencesOfString:@"\r" withString:@"<br />"];
HTMLData = [HTMLData stringByReplacingOccurrencesOfString:@"\r\n" withString:@"<br />"];
[refweb loadHTMLString:HTMLData baseURL:nil];
,但他们似乎都没有完成这项工作。 有什么想法吗?
I am pulling my data from sqlite and trying to show it in a UIWebView
I have tried
HTMLData = [container stringByReplacingOccurrencesOfString:@"\n" withString:@"<br />"];
HTMLData = [HTMLData stringByReplacingOccurrencesOfString:@"\r" withString:@"<br />"];
HTMLData = [HTMLData stringByReplacingOccurrencesOfString:@"\r\n" withString:@"<br />"];
[refweb loadHTMLString:HTMLData baseURL:nil];
but none of them seems to be doing the job.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这有效
我所做的就是我逃脱了新线。
我在编写代码时并没有只是单击“输入”,而是从控制台中的数据库输出复制并粘贴。
This worked
what I did is I escaped the new line.
I didn't just click "enter" while writing the code, but I copied and pasted from the database output in the console.