Why is it that the following code ignores the white-space? enter image description here

UIColor *textColor = [UIColor colorWithRed:153.0/255.0 green:102.0/255.0 blue:51.0/255.0 alpha:1.0];
CGContextSetFillColorWithColor(ctx, [textColor CGColor]);
CGContextSelectFont(ctx, "Helvetica Neue Bold" , 14, kCGEncodingMacRoman);
CGContextSetTextMatrix(ctx, CGAffineTransformMakeScale(1, -1)); 
CGContextSetShadowWithColor(ctx, CGSizeMake(0.0, 1.0), 1.0, [[UIColor whiteColor] CGColor]);
//CGContextSetAllowsAntialiasing(ctx, YES);

NSString *str = @"test1   test2";
CGContextShowTextAtPoint(ctx, 5, 17, [str UTF8String], str.length);

Where as changing the font name to "Helvetica Neue" produces the white space:

Does anyone understand whats going on here?

link|improve this question

54% accept rate
feedback

1 Answer

up vote 3 down vote accepted

CGContextShowTextAtPoint() is not the right way to show text using CoreGraphics, as misleading as that function name may be. Try CoreText instead.

link|improve this answer
Interesting, why show text isn't the right way to show text using CoreGraphics? I ended up changing the font to something else to go around this but would love to revert that change and more importantly understand the reason behind this. Thanks you! – vance Apr 1 '11 at 4:10
CoreGraphics’ text API doesn’t support anything but Roman scripts, doesn’t support fallback fonts (using characters from another font when your font is missing them), or any sort of realy text layout aside from plain advances (including features present in many of the fonts that ship on the system). CoreText supports all these and more, with a nice API to boot. – Ben Stiglitz Apr 1 '11 at 21:30
Thanks! Very good info, where did you find them? :) I have been looking all over to more understand this. Thank you so much. – vance Apr 2 '11 at 16:37
In the Quartz Programming guide: “iOS 3.2 and later and Mac OS X both support Core Text…designed for high performance and ease of use and allows you to draw Unicode text directly to a graphics context… If your application needs nothing more than Quartz 2D's limited ability to render MacRoman glyphs in a graphics context, then read this chapter.” – Ben Stiglitz Apr 10 '11 at 19:57
feedback

Your Answer

 
or
required, but never shown

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