首页 > 编程语言 > 详细

OC数组中文排序

时间:2016-02-14 16:52:15      阅读:134      评论:0      收藏:0      [点我收藏+]

 

 

-(void)sortStudentInfo

{

    if(studentInfoArray && studentInfoArray.count > 0)

    {

        for(TWDetaiAnswerResultStudentInfoVO *studentInfo in studentInfoArray)

        {

            studentInfo.sortName = [NSMutableString stringWithString:studentInfo.studentName];

            CFStringTransform((CFMutableStringRef)studentInfo.sortName, NULL, kCFStringTransformToLatin, false);

        }

        

        NSMutableArray *array = [NSMutableArray arrayWithArray:studentInfoArray];

        

        array = [array sortedArrayUsingComparator:^NSComparisonResult(TWDetaiAnswerResultStudentInfoVO *studentInfo1, TWDetaiAnswerResultStudentInfoVO *studentInfo2)

                            {

                                NSComparisonResult result = [studentInfo1.sortName compare:studentInfo2.sortName];

                                return result;

                            }];

        

        [studentInfoArray removeAllObjects];

        [studentInfoArray addObjectsFromArray:array];

    }

}

OC数组中文排序

原文:http://www.cnblogs.com/xiangjune/p/5189170.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!