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
}
Selecting any option will automatically load the page