Chinese Convert可提供将繁体中文转换为简体中文或相反方向的转换功能。
提供中文字符繁简体相互转换。
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];