1
A
回答
2
我假設你有一個fetchedResultsController設置爲從數據庫中檢索對象。 當您設置fetchedResultsController時,您必須將NSPredicate添加到您的fetchRequest。
日期無恥地從here
//You can set up your custom dates like this
NSDate *today = [NSDate date];
NSDate *yesterday = [today addTimeInterval: -86400.0];
NSDate *thisWeek = [today addTimeInterval: -604800.0];
NSDate *lastWeek = [today addTimeInterval: -1209600.0];
// This predicate retrieves all the object created since last week.
NSpredicate *predicate = [NSPredicate predicateWithFormat:@"yourDateField >= %@ ", lastWeek];
[fetchRequest setPredicate:predicate];
// You can add sorting like this
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"yourDateField" ascending:YES];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, nil];
[fetchRequest setSortDescriptors:sortDescriptors];
希望這有助於被盜。如果您有任何問題,請告訴我。
相關問題
- 1. CoreData:按日期
- 2. 搜索按日期
- 3. Coredata NSPredicate按日期
- 4. Twitter搜索Api 1.1按日期搜索
- 5. 按日期搜索範圍
- 6. 搜索按日期ASP.NET SQL
- 7. mysql表按日期搜索
- 8. CoreData排序按日期
- 9. CoreData搜索RestKit
- 10. Cakephp:按日期搜索,無範圍
- 11. 按日期在SQL Server中搜索
- 12. 使用命令行按日期搜索
- 13. 如何按日期在sqlite中搜索?
- 14. 必應搜索API:按日期縮小
- 15. Laravel按日期搜索不工作
- 16. 在DBIx上按日期搜索::類
- 17. GAE Python:使用dateutil.parser按日期搜索
- 18. 在SQL Server 2012中按日期搜索
- 19. Twitter REST API v1.1 - 按日期搜索?
- 20. 按日期SQL服務器搜索2005
- 21. 按日期搜索Mysql查詢
- 22. 如何在PGSQL中按日期搜索?
- 23. Apache Lucene - 按具體日期搜索
- 24. wordpress按日期排序搜索結果
- 25. SQL,按日期搜索,不存在
- 26. 按日期搜索和項目名稱
- 27. Bing Azure API按日期範圍搜索
- 28. jqGrid,搜索日期
- 29. Twitter API 1.1搜索/推文 - 按日期搜索
- 30. Yii:搜索日期期間