本文介绍了UITextView 中的项目符号列表和编号列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

谁能告诉我如何将项目符号列表和编号列表添加到 UITextView 中的选定文本中.

Can any body tell me how to add bullet list and numbered list to the selected text in UITextView.

推荐答案

检查这个问题:iphone bullet point清单

您可能希望将项目符号的 unicode 字符添加到您的行中 (@"u2022)

You might want to add the unicode char of bulletpoints to your lines (@"u2022)

NSArray * items = ...;
NSMutableString * bulletList = [NSMutableString stringWithCapacity:items.count*30];
for (NSString * s in items)
{
   [bulletList appendFormat:@"u2022 %@
", s];
}
textView.text = bulletList;

这篇关于UITextView 中的项目符号列表和编号列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-03 03:17