ヘジ仲間、
私は現在、それらを手動でカスタムUIViewに描画するために、文字および/またはそれらの複数をCGPathRefに変換しようとしています。この小さなスニペットを含む CoreText と Framesetter を試してみましたが、うまくいかないようです....
NSAttributedString *stringToDraw = [[NSAttributedString alloc] initWithString:content
attributes:nil];
// now for the actual drawing
CGContextRef context = UIGraphicsGetCurrentContext();
// flip the coordinate system
// draw
CTFramesetterRef frameSetter = CTFramesetterCreateWithAttributedString((__bridge CFAttributedStringRef)stringToDraw);
CTFrameRef frame = CTFramesetterCreateFrame(frameSetter, CFRangeMake(0, 0), NULL, NULL);
return CTFrameGetPath(frame);