iPhone中文简繁体转换
Cocoa/Objective-C中有没有办法将中文简体字转换为繁体字?在 .NET 平台上,您可以在项目中包含 VB dll,以便您可以访问函数以进行轻松转换。我可以在 Cocoa/Objective-C 中使用什么来让我做同样的事情吗?我想在简化和传统之间切换,反之亦然。谢谢你!
Is there a way to convert Chinese simplified characters to traditional characters in Cocoa/Objective-C? On the .NET platform you can include a VB dll in your projects that gives you access to a function for an easy conversion. Is there anything I can use in Cocoa/Objective-C that will allow me to do the same? I want to go between simplified and traditional and vice-versa. Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,Apple 没有公开的 API 可以让您通过简单地调用函数来转换汉字,但您可以自己逐个字符进行转换。
OpenVanilla项目是一个开源输入法项目,维护着一个汉字转换表。它被用在输入法软件中,但我认为它也可以用于其他目的。它位于
As I know, Apple does not have public APIs to let you convert Chinese characters by simply calling a function, but you can do the conversion character by character your self.
The OpenVanilla project, an open source input method project, maintains a Chinese character conversion table. It was used in the input method software but I think it could also be used for other purposes. It is available at