码迷,mamicode.com
首页 > 移动开发 > 详细

iOS把汉字转成拼音

时间:2015-11-03 22:32:28      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:

    //汉字转拼音

    NSMutableString *mutableString = [NSMutableString stringWithString:person.name];

    CFStringTransform((CFMutableStringRef)mutableString, NULL, kCFStringTransformToLatin, false);

    mutableString = (NSMutableString *)[mutableString stringByFoldingWithOptions:NSDiacriticInsensitiveSearch locale:[NSLocale currentLocale]];

    

    //获取首字母, 并转成大写

    NSString *firstLetter = [[mutableString substringToIndex:1] uppercaseString];//从0 开始到 某个位置

    //uppercaseString转化成大写,lowercaseString转化成小写

 

iOS把汉字转成拼音

标签:

原文地址:http://www.cnblogs.com/hsxblog/p/4934360.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!