我正在开发我的第一个严肃的iPhone应用程序并且第一次使用json。 现在我在tableview上方有一个搜索字段,我想将数据过滤到输入的搜索文本。 JSON看起来像这样:
{
"id":1,
"title":"Een Product",
"category":"Categorie",
"description":"Een Beschrijving",
"price":"10.00",
"image":"http:\/\/dev.smit-it.info\/APP\/LOGO\/een.png"
},
现在我希望能够按标题搜索,我正在尝试以下内容。
- (void) searchBarSearchButtonClicked:(UISearchBar *)sender
{
[self.SearchbarOnDisplay resignFirstResponder];
self.SearchbarOnDisplay.showsCancelButton=NO;
//ToDo:Get the search results
NSString *match = self.SearchbarOnDisplay.text;
self.SearchIsStarted = YES;
NSPredicate *sPredicate = [NSPredicate predicateWithFormat:@"SELF CONTAINS[cd] %@", match];
NSArray *ArrayWithFilteredContent;
ArrayWithFilteredContent = [self.dynamicData.DynamicRetrevedData filteredArrayUsingPredicate:sPredicate];
[self.tableView reloadData];
}
现在我设置了一些断点,问题是self.dynamicData.DynamicRetrevedData
是NIL。我不明白的是因为这是viewdidload中的alloc和init,数据当前显示在tableview中。如果它不是零,我如何指定它搜索标题。
希望你能提供帮助,我已经尝试了2天了
答案 0 :(得分:1)
首先,您的NSPredicate
模式不正确,应该是
NSPredicate *sPredicate = [NSPredicate predicateWithFormat:@"title CONTAINS[cd] %@", match]; // or @"title beginswith[c] %@" for alphabetically search.
但这不是其他问题。如果tableView的数据正确显示,那么首先逐行检查代码然后它应该正常工作self.dynamicData.DynamicRetrevedData