Error[8]: Undefined offset: 5, File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 121
File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 473, decode(

概述在使用NSSortDescriptor之前,已经提出并回答了这一点,这很容易.但是有没有使用Array.sort()的Swift标准方式? struct Sortable { let isPriority: Bool let ordering: Int} 将Sortable数组排序一个属性很简单: sort { $0.ordering < $1.ordering } 但是我想通过 在使用NSSortDescriptor之前,已经提出并回答了这一点,这很容易.但是有没有使用Array.sort()的Swift标准方式?
struct Sortable {    let isPriority: Bool    let ordering: Int}

将Sortable数组排序一个属性很简单:

sort { 
var sorted = array.sort({ (s1,s2) -> Bool in    if s1.isPriority && !s2.isPriority {        return true //this will return true: s1 is priority,s2 is not    }    if !s1.isPriority && s2.isPriority {        return false //this will return false: s2 is priority,s1 is not    }    if s1.isPriority == s2.isPriority {        return s1.ordering < s2.ordering //if both save the same priority,then return depending on the ordering value    }    return false})
.ordering < .ordering }

但是我想通过isPriority排序,然后通过排序 – 我不能让我的头围绕一个简单的语句来做到这一点.

是的,有一个非常简单的方法使用Array.sort()

码:

true - 10true - 10true - 12true - 12true - 19true - 29false - 16false - 17false - 17false - 17false - 18

排序数组:

let sorted = array.sort { t1,t2 in    if t1.isPriority == t2.isPriority {      return t1.ordering < t2.ordering    }   return t1.isPriority && !t2.isPriority }

另一个更短的解决方案:

[+++] 总结

以上是内存溢出为你收集整理的swift – 通过两个属性排序对象数组全部内容,希望文章能够帮你解决swift – 通过两个属性排序对象数组所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

)
File: /www/wwwroot/outofmemory.cn/tmp/route_read.php, Line: 126, InsideLink()
File: /www/wwwroot/outofmemory.cn/tmp/index.inc.php, Line: 165, include(/www/wwwroot/outofmemory.cn/tmp/route_read.php)
File: /www/wwwroot/outofmemory.cn/index.php, Line: 30, include(/www/wwwroot/outofmemory.cn/tmp/index.inc.php)
swift – 通过两个属性排序对象数组_app_内存溢出

swift – 通过两个属性排序对象数组

swift – 通过两个属性排序对象数组,第1张

概述在使用NSSortDescriptor之前,已经提出并回答了这一点,这很容易.但是有没有使用Array.sort()的Swift标准方式? struct Sortable { let isPriority: Bool let ordering: Int} 将Sortable数组排序一个属性很简单: sort { $0.ordering < $1.ordering } 但是我想通过 在使用NSSortDescriptor之前,已经提出并回答了这一点,这很容易.但是有没有使用Array.sort()的Swift标准方式?
struct Sortable {    let isPriority: Bool    let ordering: Int}

将Sortable数组排序一个属性很简单:

sort { 
var sorted = array.sort({ (s1,s2) -> Bool in    if s1.isPriority && !s2.isPriority {        return true //this will return true: s1 is priority,s2 is not    }    if !s1.isPriority && s2.isPriority {        return false //this will return false: s2 is priority,s1 is not    }    if s1.isPriority == s2.isPriority {        return s1.ordering < s2.ordering //if both save the same priority,then return depending on the ordering value    }    return false})
.ordering < .ordering }

但是我想通过isPriority排序,然后通过排序 – 我不能让我的头围绕一个简单的语句来做到这一点.

是的,有一个非常简单的方法使用Array.sort()

码:

true - 10true - 10true - 12true - 12true - 19true - 29false - 16false - 17false - 17false - 17false - 18

排序数组:

let sorted = array.sort { t1,t2 in    if t1.isPriority == t2.isPriority {      return t1.ordering < t2.ordering    }   return t1.isPriority && !t2.isPriority }

另一个更短的解决方案:

总结

以上是内存溢出为你收集整理的swift – 通过两个属性排序对象数组全部内容,希望文章能够帮你解决swift – 通过两个属性排序对象数组所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1040490.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存