I have a force unwrapping issue in swift and I've been fixing everything. So Ive forced unwrapped but I get this error "Initializer for conditional binding must have optional type, not 'Date'. Here is the code.
if let createdat = (object?.object(forKey: "createdAt") as? String){
if let pastDate = Date(timeIntervalSinceNow: TimeInterval(createdat)!)//Here is where I get the error{
}
}