The iOS APIs don't mention threading restrictions on CoreText APIs. To what extent are they safe to use on non-main threads when calling functions that don't use a CGContextRef?

Specifically, I'm trying to create a bunch of NSAttributedStrings using a custom truncation algorithm, and I'd like to be able to background the work. I'm only using:

CTLineCreateWithAttributedString
CTLineGetTypographicBounds
CTLineGetStringIndexForPosition
link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

I should have checked <CoreText/CoreText.h>.

/*!
    @header

    Thread Safety Information

    All functions in this header are thread safe unless otherwise specified.
*/
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.