Question

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 KeyValueCoding or some other quick one liner kind of way? I know that I could use something like valueForKeyPath@"@max.date" if the objects had a date property, but what if the objects are dates themselves??

thanks

Was it helpful?

Solution

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.

OTHER TIPS

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];
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top