Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
342 views
in Technique[技术] by (71.8m points)

Sort an array of dictionary (swift)

let unsorted = [{Name:Amy,age:20},{Name:Bill,age:20}]
let sortedDict = sorted(unsorted){a,b in return a.Name < b.Name}

How can I sort the unsorted array according to the Name key? Above code seems doesn't work.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Your sorting syntax works (almost) if you are using a custom struct rather than a dictionary

struct Person {
  let name : String
  let age : Int
}

let unsortedPeople = [Person(name:"Bill", age:20), Person(name:"Amy", age:20)]

Now you can use the sorted function

let sortedDict = unsortedPeople.sorted{ $0.name < $1.name }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...