Swift how to sort array of custom objects by property value

前端 未结 18 2066
逝去的感伤
逝去的感伤 2020-11-22 02:12

lets say we have a custom class named imageFile and this class contains two properties.

class imageFile  {
    var fileName = String()
    var fileID = Int(         


        
18条回答
  •  有刺的猬
    2020-11-22 02:52

    You can also do something like

    images = sorted(images) {$0.fileID > $1.fileID}
    

    so your images array will be stored as sorted

提交回复
热议问题