gpt4 book ai didi

objective-c - TableView 日期降序排列 swift

转载 作者:行者123 更新时间:2023-11-30 10:42:16 25 4
gpt4 key购买 nike

您好,我在 tableview 单元格中为 indexPath 方法的行编写了以下代码。我想根据日期按降序显示数据。

任何人请帮助我。

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "pickupsTableViewCell", for: indexPath)as! pickupsTableViewCell

if let data = getinvoice, data.count > 0 , data.count > indexPath.row
{
let model = getinvoice[indexPath.row]

if let pickupdate = model.pickupDate
{
let datefrmt = pickupdate.convertFormatOfDate(originalFormat: "yyyy-MM-dd", destinationFormat: "dd")
let mnthfrmt = pickupdate.convertFormatOfDate(originalFormat: "yyyy-MM-dd", destinationFormat: "MMM")
cell.pickuptbldate.text = datefrmt
cell.pickuptblmnth.text = mnthfrmt?.uppercased()
}

if let cardlastnumbers = model.last4
{
cell.pickuptblcardnumber.text = ". . . . " + cardlastnumbers
}
}
}

最佳答案

您可以通过以下方法对数据进行排序和比较日期。但要在 cellForRow 方法之前执行。

self.getinvoice.sort(by: {
$0.pickupDate ?? Date() < $1.pickupDate ?? Date()
})

关于objective-c - TableView 日期降序排列 swift ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56538025/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com