I want to draw an NSAttributedString in a rect, just like I would do with a normal string: [normalString drawInRect:rect]; but I can't figure out how. I don't want any UILabel subclasses since I'm implementing a fast scrolling UITableView with no views, so it needs to be drawn. The documentation shows that drawing is only available on Mac.
Is drawing an NSAttributedString not possible on iOS?
CATextLayernot adequate?CATextLayeris good, and may be suitable for this particular tast. However, it doesn't obey all the formatting that can be contained inNSAttributedString. See CATextLayer + NSAttributtedString + CTParagraphStyleRef.