ChineseConvert 0.0.1

ChineseConvert 0.0.1

测试测试
语言语言 Obj-CObjective C
许可证 MIT
发布最后发布2015年4月

Cash Lee维护。



Chinese Convert可提供将繁体中文转换为简体中文或相反方向的转换功能。

提供中文字符繁简体相互转换。

  • [convertManager goToBig5:textString] 简体转换繁体
  • [convertManager big5ToGb:textString] 繁体转换简体

安装

pod 'ChineseConvert'

用法

    import "ChineseConvert.h"

    ChineseConvert * convertManager = [[ChineseConvert alloc]init];

    //from simple Chinese to traditional Chinese 

    [convertManager gbToBig5:textString];

    //from traditional Chinese to simple Chinese 

    [convertManager big5ToGb:textString];