zoukankan      html  css  js  c++  java
  • Object-C-Foundation-数组排序

    系统类型排序;

    NSArray *goodsNames =@[@"computer",@"iphone",@"ipad"];

    NSArray *sortedArray=[goodsNames sortedArrayUsingSelector:@selector(compare:)];

    自定义排序

    Person *p1=[[Person alloc]initWithName:@"tom" andAge:12 andCard:nil];

    Person *p2=[[Person alloc]initWithName:@"jack" andAge:23 andCard:nil];

    Person *p1=[[Person alloc]initWithName:@"maggie" andAge:11 andCard:nil];

     NSArry *personsArray=@[p1,p2,p3];

    在person类中定义一个comparePerson方法

    /***************************************************************

    -(NSComparisonResult)comparePerson:(Person *)person

    {

        NSNumber *age1=[[NSNumber alloc]initWithInt:self.age];

        NSnumber *age2=[[NSNumber alloc]initWithInt:person.age];

        NSComparisonResult result=[age1 compare:age2];

      if(result == NSOrderedSame)

        {

             result=[self.name compare:person.name];

        }

        return result;

    }

    /******************************************************************

    NSArray *personsArray=@[p1,p2,p3];

    NSArray *sortedArray=[personsArray sortedArrayUsingSelector:@selector(comparePerson:)];

    完成对personsArray进行排序

    使用block进行排序

    NSArray *sortedArray=[personsArray sortedArrayUsingComparator:^NSComparisonResult(id obj1,id obj2){

         Person *p1=(Person *)obj1;

         Person *p2=(Person *)obj2;

         NSNumber *age1=[[NSNumber alloc]initWithInt:self.age];

        NSnumber *age2=[[NSNumber alloc]initWithInt:person.age];

        NSComparisonResult result=[age1 compare:age2];

      if(result == NSOrderedSame)

        {

             result=[self.name compare:person.name];

        }

        return result;

    }

    复杂排序

    NSSortDescriptor

    NSSortDescriptor *sort1=[[NSSortDescriptor]initWithKey:@"name" ascending:YES];

    NSSortDescriptor *sort2=[[NSSortDescriptor]initWithKey:@"age" ascending:YES];

    NSArray *conditionsArray=@[sort1,sort2];

    NSArray *sortedArray =[personsArray sortedArrayUsingDescriptors:conditionsArray];

    /*******************

    NSSortDescriptor *sort1=[[NSSortDescriptor]initWithKey:@"name" ascending:YES];

    NSSortDescriptor *sort2=[[NSSortDescriptor]initWithKey:@"self.card.balance" ascending:YES];

  • 相关阅读:
    MSB4064 错误
    javascript 通过模块模式实现代码访问控制
    vs 2012 更新update4 后出现问题
    html 转 PDF wkhtmltopdf image 不能显示的问题
    Html方式导出word 页头和页脚设置
    使用JSON JavaScriptSerializer 进行序列化或反序列化时出错。字符串的长度超过了为 maxJsonLength属性
    经验1-打印web
    DataGridView 多线程更新 数据 解决卡顿问题
    Copy List with Random Pointer [LeetCode]
    Validate Binary Search Tree [LeetCode]
  • 原文地址:https://www.cnblogs.com/Opaser/p/4555066.html
Copyright © 2011-2022 走看看