排序前 必须先定义一个比较的方法 如下
-(NSComparisonResult )studentcompare:(Student *)stu;
在Sstudent的类中定义
for ....in的用法
取出in后面数组中的各个元素
将数组中的元素排序
NSArray *array3=[array2 sortedArrayUsingSelector:@selector(studentcompare: )];
OC中排序
时间: 2024-10-12 00:02:12
排序前 必须先定义一个比较的方法 如下
-(NSComparisonResult )studentcompare:(Student *)stu;
在Sstudent的类中定义
for ....in的用法
取出in后面数组中的各个元素
将数组中的元素排序
NSArray *array3=[array2 sortedArrayUsingSelector:@selector(studentcompare: )];
OC中排序