This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //(startDateTime é a propriedade NSDate do objeto customizado pela qual quer ordenar) | |
| NSSortDescriptor *dateDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"startDateTime" | |
| ascending:YES]; | |
| NSArray *sortDescriptors = [NSArray arrayWithObject:dateDescriptor]; | |
| NSArray *sortedEventArray = [nodeEventArray sortedArrayUsingDescriptors:sortDescriptors]; |
NewerOlder