2015-09-19 36 views

回答

0

你可以使用whereKey:greaterThan來解決這個問題。

let threeDaysAgo = NSDate().dateByAddingTimeInterval(-259200) 
query.whereKey("createdAt", greaterThan: threeDaysAgo) 
相關問題