フォントのサンプルテキストを取得しようとしています。これが私のコーディングです。
NSString *fontFilePath=@"/Volumes/Work/Mac/Fonts/FONT FOLDER/Times New Roman Bold.ttf";
CFStringRef aCFString = (CFStringRef)fontFilePath;
CTFontRef fontRef = CTFontCreateWithName(aCFString, 0.0,NULL);
CFStringRef sampleText=CTFontCopyName(fontRef,kCTFontSampleTextNameKey);
NSLog(@"%@",sampleText);
結果としてnullを返します。ただしkCTFontCopyrightNameKey
、kCTFontLicenseURLNameKey
などの場合は、正しい値を返します。それだけのためkCTFontSampleTextNameKey
にそれは戻りますnull
。指定されたフォントのサンプルテキストを取得する方法を教えてください。