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?