2013年5月30日 星期四

[iOS] CGContextShowTextAtPoint & non-ASCII

由於 CGContextShowTextAtPoint  不能畫出 非ascii的字

所以只能用  NSString drawAtPoint...

不過換過去之後記得要

在 drawAtPoint  前後夾上

UIGraphicsPushContext(_composedImageContext);

 

[text drawAtPoint:(CGPointMake(0, expectedLabelSize.height / 2.0)) withFont:[UIFontfontWithName:fontName size:60.0]];

 

UIGraphicsPopContext();

 

把畫紙推到最前面去畫 然後再推回來

ref:http://www.cocoachina.com/bbs/simple/?t10441.html

沒有留言:

張貼留言