Cocoa 中未本地化的字体集合名称
我正在使用 [[NSFontManager sharedFontManager] collectionNames]
获取所有集合,但我看到一些未翻译的字符串(例如“com.apple.AllFonts”)。有办法本地化它们吗?我看到 Font Book 确实成功翻译了它们。也许我做错了什么。
谢谢,
-阿尔贝
I'm getting all collections using [[NSFontManager sharedFontManager] collectionNames]
, but I see some untranslated strings (such as "com.apple.AllFonts"). There is a way to localize them? I see that Font Book does translate them successfully. Maybe I am doing something wrong.
Thanks,
—Albe
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Apple 在其所有内部集合名称中都添加了“com.apple”前缀,这可能是为了避免冲突。根据您正在执行的操作,您可以:
if ([name hasPrefix:@"com.apple"]) name = [[name ComponentsSeparatedByString:@"."] objectAtIndex:2];
之类的东西就可以了。Apple prefixes all of its internal collection names with "com.apple", probably to avoid conflicts. Depending on what you're doing, you could:
if ([name hasPrefix:@"com.apple"]) name = [[name componentsSeparatedByString:@"."] objectAtIndex:2];
would work.