NSAttributedString and html styling (bullet alignment)
In my iOS app I'm using NSAttributedString to generate a list of bullets. Unfortunately I'm struggling with making the bullets look presentable. My first attempt was to use regular text and a unicode character for the bullets, basically using a string like this:
var attributedString = NSMutableAttributedString(
string: "Here is a list of bullets and a paragraph introducing them, note that this paragraph spans multiple linesn" +
"• This is the first bulletn" +
"• Here is a second bulletn" +
"• And here is a third bullet with a lot of text such that it overflows to the next line"
)
The result was this:
I like how the bullets look, but the overflowing text in the last bullet should be aligned with the line before and I couldn't figure out how to achieve that with plain text (without applying the same alignment to the paragraph above).
My 2nd attempt was to use html in NSAttributedString via NSHTMLTextDocumentType, and use <ul>
and <li>
elements to generate the bullets.
let content = "Here is a list of bullets and a paragraph introducing them, note that this paragraph spans multiple lines" +
"<ul>" +
"<li>This is the first bullet</li>" +
"<li>Here is a second bullet</li>" +
"<li>And here is a third bullet with a lot of text such that it overflows to the next line</li>" +
"</ul>"
var attributedString = try! NSMutableAttributedString(
data: content,
options: [NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType],
documentAttributes: nil
)
That fixed the first issue but introduced a new one:
The bullets are now spaced too far (both from the left edge and the text on the right). I tried to use the typical html/css tricks to fix the alignment ( <li style="text-indent: -10px;">
) but those styles seem to be ignored by NSAttributedString.
I tried to remedy this with an additional NSMutableParagraphStyle but it seems to do more harm than good. Here is what I tried:
var paragraphStyle = NSMutableParagraphStyle()
paragraphStyle.firstLineHeadIndent = 0
paragraphStyle.headIndent = 20
attributedString.addAttribute(NSParagraphStyleAttributeName, value: paragraphStyle, range: attributedStringRange)
And here is what I got:
As you can see, it only made things worse, here are my issues with it:
All I really want is for my bullet spacing to look similar to the first screenshot while the overflow indent for second line to look like the second without having to hardcode exact pixel positions. Could you guys help me out?
Thanks
I had to add custom styles to a list and this is the paragraph style I ended up using for each bullet in an NSAttributedString
The headIndent
and firstLineHeadIndent
can be changed but the NSTextTab
location should be the same as headIndent
NSMutableParagraphStyle *const bulletParagraphStyle = [[NSParagraphStyle defaultParagraphStyle] mutableCopy];
bulletParagraphStyle.headIndent = 60;
bulletParagraphStyle.firstLineHeadIndent = 30;
NSTextTab *listTab = [[NSTextTab alloc] initWithTextAlignment:NSTextAlignmentNatural location:60 options:@{}];
bulletParagraphStyle.tabStops = @[listTab];
This works assuming your bullet point has a t
after it (and then then text)
上一篇: REBOL布局:如何自动创建布局单词