Sorting a 2D array in obj-c?
Posted
by Debashis
on Stack Overflow
See other posts from Stack Overflow
or by Debashis
Published on 2010-03-18T06:15:05Z
Indexed on
2010/03/18
6:21 UTC
Read the original article
Hit count: 551
I have a 2D array as follows:
[[@"string value", @"string value", NSInteger],
[@"string value", @"string value", NSInteger],
[@"string value", @"string value", NSInteger]]
How would I sort the second dimension of arrays by the NSInteger?
© Stack Overflow or respective owner