UITextView中的HTML有序列表
Posted
技术标签:
【中文标题】UITextView中的HTML有序列表【英文标题】:HTML ordered list in UITextView 【发布时间】:2018-03-14 16:35:36 【问题描述】:我正在尝试将带有有序列表的 html 文本设置为 UITextView。
NSString *bodyText = "Please follow the below points:<br><ol><li>Point number one.</li><br><li>Point number two.<br><br>Note:<br>There is point to note here.</li><br><li>Point number three.</li></ol>";
NSAttributedString *attributedString = [[NSAttributedString alloc] initWithData:[bodyText dataUsingEncoding:NSUnicodeStringEncoding] options:@NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType documentAttributes:nil error:nil];
self.bodyTextView.attributedText = attributedString;
上面是我想将它设置到我的 UITextView 的 HTML 文本。我屏幕上的预期结果应该类似于
Please follow the below points:
1. Point number one.
2. Point number two.
Note:
There is point to note here.
3. Point number three.
但是,我在屏幕上看到的结果是,
Please follow the below points:
1. Point number one.
2.
3. Point number two.
Note:
There is point to note here.
4.
5. Point number three.
有什么问题?我怎么能克服它?我不应该更改 HTML 文本。我将如何处理来自应用程序的案例?
提前致谢!
【问题讨论】:
【参考方案1】:您的 HTML 是问题所在。列表项之间不应有任何<br>
标记。在列表项内部是可以的,但在它们之间就不行。
去掉两个不必要的<br>
标签,你的输出就正确了。
【讨论】:
那怎么可以加新行呢? 哪些换行符?我只是在谈论关闭</li>
和下一个<li>
之间的两个无效<br>
标签。以上是关于UITextView中的HTML有序列表的主要内容,如果未能解决你的问题,请参考以下文章
HTML前端:三种列表“无序列表 有序列表 自定义列表“ 定义
HTML前端:三种列表“无序列表 有序列表 自定义列表“ 定义
HTML前端:三种列表“无序列表 有序列表 自定义列表“ 定义