I\'m drawing multiple \'pages\' of imagery using a CGContext in the iOS. I\'ve used sizeWithFont and drawInRect combinations extensively in my app. What I need to do is spli
The way I get around this problem is to split by line returns.
NSArray * paragraphs = [text componentsSeparatedByString:@"\n"];
You still have to do all the work to determine page breaks and alike but I have found this the best workaround so far.