Sort array that contain alphanumeric words in iOS [duplicate]
问题 This question already has answers here : How to add these object with name to the array by this order? (4 answers) Closed 5 years ago . I have a array with 10 elements called products which is sorted by default, this is the current log now. for (int i=0;i<products.count; i++) { NSLog(@"%@",products[i]); } The Output: Product1 Product10 Product2 Product3 Product4 Product5 Product6 Product7 Product8 Product9 I need to sort it in following order: Product1 Product2 Product3 Product4 Product5