快速排序NSDates数组

时间:2016-02-18 19:43:09

标签: swift nsdate

我在swift中有一系列NSDates。日期只有几小时和几分钟。我试过了

times.sortInPlace({ $0.date.compare($1.date) == NSComparisonResult.OrderedAscending })

但我收到错误"静态成员'日期'不能用于类型的实例' NSDate'而且我在1970年的尝试中也得到了同样的错误。

1 个答案:

答案 0 :(得分:3)

您正在尝试访问NSDate日期属性。试试这样:

times.sortInPlace({ $0.compare($1) == NSComparisonResult.OrderedAscending })