Getting Max Date from NSArray, KVC

后端 未结 2 1573
夕颜
夕颜 2021-01-03 06:31

I\'ve got an array of NSDates and I\'d like to grab the largest NSDate from the array. While i could always sort them and grab the first/last, is there a way to do this with

相关标签:
2条回答
  • 2021-01-03 07:16

    Agree with @SeanDanzeiser. To be more specific, here's a ~70 byte one-liner:

    // if dateArray is the array of dates ...
    NSDate *maxDate = [[dateArray sortedArrayUsingSelector:@selector(compare:)] lastObject];
    
    0 讨论(0)
  • 2021-01-03 07:19

    You can use,

    NSDate *maxDate = [dateArray valueForKeyPath:@"@max.self"];
    

    This will give you the largest date from array. You dont have to sort the array before doing this.

    From the documentation,

    The @max operator compares the values of the property specified by the key path to the right of the operator and returns the maximum value found. The maximum value is determined using the compare: method of the objects at the specified key path. The compared property objects must support comparison with each other. If the value of the right side of the key path is nil, it is ignored.

    Note that @max will do compare: and then will find out the max value.

    0 讨论(0)
提交回复
热议问题