排序前 必须先定义一个比较的方法 如下
-(NSComparisonResult )studentcompare:(Student *)stu;
在Sstudent的类中定义
for ....in的用法
取出in后面数组中的各个元素
将数组中的元素排序
NSArray *array3=[array2 sortedArrayUsingSelector:@selector(studentcompare: )];
原文地址:http://www.cnblogs.com/sunxiang1991/p/3852174.html