I have a NSArray of objects. Each object has several properties.
For example:
The NSArray oneArray has 5 objects. Each object has the following properties: name, address, ZIP_Code.
How can I sort the NSArray, by name?
|
Taken from code posted by KennyTM. Edited by Jordan to actually work ;) Replace Array arr with your array. Modify to suit. |
|||||
|
|
|||
|
|
|
I like Jordan's answer because (1) I didn't know about NSSortDescriptor and (2) it's useful for sorting on multiple properties. But what I usually do is create a method like |
|||
|