嗨,我在tablePath单元格中为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
}
}
}
答案 0 :(得分:0)
您可以通过以下方法对数据进行排序并比较日期。但是请在cellForRow
方法之前进行。
self.getinvoice.sort(by: {
$0.pickupDate ?? Date() < $1.pickupDate ?? Date()
})