Drawing large scrollable content using CATiledLayer works great in my application. What doesn't work so well is drawing images and multi-line text using the Core Text and Core Image APIs in C.
I have a strong feeling that I am trying to invent a wheel by writing my own Objective-C shell classes around C functions, such as CGContextShowTextAtPointmirroring everything with CGContextSetTextMatrix(context, CGAffineTransformMakeScale(1, -1)), etc. etc. etc.
I cannot use the UIKit context drawing methods because they cause crashing due to the parallel background in the CATiledLayer.
Which Objective-C libraries already exist that wrap Core Text and Image functions for ease of use in the background?
Cheers, EP.
UPDATE: now everything will be all right, I will also agree with the recommendations for a book or an online resource other than Apple Docs that describe CoreText in detail.
source
share