I have a NSMutableArray with 30 dictionaries inside of it. Each contains a name and a value. I currently have the names sorted so that the show in a table view alphabetically. However, I'd like to make a UIButton to give the option of STILL DISPLAYING THE NAMES, but ordered by the value. The value doesn't need to be displayed. Also, where in the .m/.h files would these codes be placed? THANKS!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
To be able to help you I need a test data to work with. Let's say your array with data looks like this:
In this case case here's how you sort it by value:
As for where to place this code place it wherever you need the reordering to happen (in the implementation [.m] file of course). HTH and if there will be any questions ask them in the comments. |
|||||||||||
|