let points:[Int] = [200, 1000, 100, 500]
let people:[String] = ["Harry", "Jerry", "Hannah", "John"]
let peopleIds:[Int] = [1, 2, 3, 4]
let sex:[String] = ["Male", "Male", "Female", "Male"]
我怎麼能由點這個數組進行排序是?:Swift2 - 基於另一個INT數組的排序順序排序上的多個陣列
let points:[Int] = [1000, 500, 200, 100]
let people:[String] = ["Jerry", "John", "Harry", "Hannah"]
let peopleIds:[Int] = [2, 4, 1, 3]
let sex:[String] = ["Male", "Male", "Male", "Female"]
這不是重複的How to sort 1 array in Swift/Xcode and reorder multiple other arrays by the same keys changes 我已經試過答案和它不工作