I am new to Swift and I have a problem with comparing dates with Core Data. I have two views: the first one with a date picker and a table, and the second one with a text field and another date picker. I save the date and the text from the text field into Core Data (from the 2nd view). I want to populate the table (in the first view) with the text from the text field (from the second view) when the selected date on the first date picker equals the date from the second date picker (which is saved into Core Data). I would appreciate any help. I thought about this solution but it doesn't work:
let model = eventsItems[indexPath.row]
let cell = tableView.dequeueReusableCell(withIdentifier: "cell",for: indexPath)
if model.dateSaved == dateFromFirstView{
cell.textLabel!.text = model.event
}
return cell
}
it doesn't work
That tells nothing, please explain what you get (or don't get) and what you expected.
Are model.dateSaved and dateFromFirstViewboth Date ?
If so, are the dates exactly the same ?
You should add some print to log:
if model.dateSaved == dateFromFirstView {
print("Dates are the same")
cell.textLabel!.text = model.event
} else {
print(model.dateSaved, "is not the same as", dateFromFirstView)
}
And tell what you get.