I am working on a new app. I render different documents from an NSAttributedString using Core Text. I am having trouble with strange glitches in the rendering of the text. It doesn't happen with every document. There doesn't seem to be a rhyme or reason to when it appears or not.

Here is a cropped screen shot here to demonstrate the problem.

Glitch in rendering

Here is a line from the same screenshot that is rendered correctly.

Correct rendering

The screenshots are from the same screenshot and the same document.

When the problem occurs, there are usually only 2-3 consecutive lines of text that are rendered incorrectly. The rest of the document is fine.

Here is the code that I use to render the text in drawRect:

CGContextRef context = UIGraphicsGetCurrentContext();

float viewHeight = self.bounds.size.height;
CGContextTranslateCTM(context, 0, viewHeight);
CGContextScaleCTM(context, 1.0, -1.0);
CGContextSetTextMatrix(context, CGAffineTransformMakeScale(1.0, 1.0));

CGMutablePathRef path = CGPathCreateMutable();
CGRect bounds = CGRectMake(PADDING_LEFT, -PADDING_TOP, self.bounds.size.width-20.0, self.bounds.size.height);
CGPathAddRect(path, NULL, bounds);

CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((CFMutableAttributedStringRef)attrString);
CTFrameRef frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, NULL);
CFRelease(framesetter);
CFRelease(path);
CTFrameDraw(frame, context);

Any assistance is appreciated!

EDIT: This problem does not appear to exist on the iPhone 4, only on the 3GS that I have for testing.

The glitch is always in the middle of a document.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Please try the various settings to affect the subpixel rendering of text. You can see various options on line 259 in https://github.com/Cocoanetics/NSAttributedString-Additions-for-HTML/blob/master/Classes/DTCoreTextLayoutFrame.m

link|improve this answer
Thanks for the idea. I'll give that a try later today, hopefully! – jschmidt Jun 20 '11 at 10:53
Thank you for the suggestion, but I tried each of those options and all of those options together. While they did make a difference in how the text was rendered, none of them solved the glitch. – jschmidt Jun 20 '11 at 16:40
Is this a regular drawRect or are you using this in a drawLayer of a CATiledLayer? Could it be that the break occurs at the corner of a tile? – Cocoanetics Jun 20 '11 at 17:17
It is in drawRect. The glitch always occurs somewhere in the middle of the text. It is only a line or two and the rest of the text looks fine. It also does not occur on the iPhone 4. I'm assuming that the Retina Display may make a difference with how the text is rendered. Honestly, I think this might be a bug in iOS. – jschmidt Jun 20 '11 at 19:48
Can you try out my open source project github.com/Cocoanetics/NSAttributedString-Additions-for-HTML if this occurs in the same situations? – Cocoanetics Jun 20 '11 at 19:50
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

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