-1

What is the best and fastest way to sort an NSMutableArray of NSInteger?

jscs
  • 63,694
  • 13
  • 151
  • 195
Maxime
  • 3,167
  • 7
  • 26
  • 33
  • 9
    There's no such thing as an `NSMutableArray` of `NSInteger`. What is your real question? – jscs Jun 05 '11 at 18:36
  • 2
    I guess he means instances of `NSNumber` representing `NSInteger` values. – Joost Jun 05 '11 at 18:45
  • Please look at this http://stackoverflow.com/questions/5147218/sort-nsarray-using-sortedarrayusingfunction – xXx Jun 05 '11 at 20:13

1 Answers1

1

Same way you sort any array or sort any mutable array.

Peter Hosey
  • 95,783
  • 15
  • 211
  • 370