i am trying to retrieve records which were added today to parse, but the query does not return any results. how can i get the query to return the results based on todays date.
let now = NSDate()
var query = PFQuery(className:"userBids")
query.whereKey("date", equalTo: now)
the parse date field is set to date. please help