So I have an NSAttributedString I want to insert a bullet point at the beginning of a portion of text. How can I do this? How do I create a CTPAragraphStyle that creates this bullet point when I display the text?
Edit:
Should be available on iOS
The easy bit: [mutableAttributedString insertAttributedString: @”•\t” atIndex:0];
The hard bit. Something along the following lines. (This is extracted from a bigger project, but it may give you a decent start.)
You need to include the CoreText framework and then import CoreText/CoreText.h