IOS development array sorting (array includes dictionary)

Source: Internet
Author: User
IPhone development array sorting (array includes dictionary) 1. Sort normal Arrays: Nsmutablearray * arr = [nsmutablearray arraywithobjects: @ "0", @ "8", @ "6", @ "1", nil]; nsarray * sortedarray = [arr layout: ^ nscomparisonresult (ID obj1, Id obj2) {If ([obj1 intvalue]> [obj2 intvalue]) {return nsordereddescending;} If ([obj1 intvalue] <[obj2 intvalue]) {return nsorderedascending;} return nsorderedsame;}]; nslog (@ "sorted array: % @", sortedarray); 2. dictionary sorting in the array: nsmutablearray * mymutabl Earr = [[[nsmutablearray alloc] init] autorelease]; nsdictionary * dicone = [nsdictionary dictionarywithobjectsandkeys: @ "1", @ "price", @ "2 ", @ "Number", nil]; nsdictionary * dictwo = [nsdictionary dictionarywithobjectsandkeys: @ "6", @ "price", @ "5", @ "Number", nil]; nsdictionary * dicthree = [nsdictionary dictionarywithobjectsandkeys: @ "3", @ "price", @ "1", @ "Number", nil]; nsdictionary * dicfour = [nsdictionary di Ctionarywithobjectsandkeys: @ "4", @ "price", @ "3", @ "Number", nil]; [mymutablearr addobject: dicone]; [mymutablearr addobject: dictwo]; [Export addobject: dicthree]; [mymutablearr addobject: dicfour]; nsarray * sortdescriptors = [nsarray attributes: [Export attributes: @ "price" ascending: Yes]; [mymutablearr attributes: sortdescriptors]; nslog (@ "sorted array % @", mymutablearr) It has been verified that the above method is quite convenient, especially when there is a dictionary in the array.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.