你好,我是新的iphone开发者,我希望你有指导......
我想为不同的法律文章制作一个包含法律条款和解释的应用程序...... 问题是我想要一个搜索栏,所以用户可以在文章里面搜索他想要的任何单词......怎么能这样做?
由于
答案 0 :(得分:1)
我告诉你因为你是新人,否则我会投票给你。
我有字典数组,我正在搜索这样的记录
-(void)searchBar:(UISearchBar*)searchBar textDidChange:(NSString*)text
{
ProductFilteredArray = [[NSMutableArray alloc] init];
for (NSMutableDictionary * cty in globleAry)
{
NSRange nameRange = [[cty objectForKey:@"Name"] rangeOfString:text options:NSCaseInsensitiveSearch];
if(nameRange.location != NSNotFound)
{
[ProductFilteredArray addObject:cty];
}
}
//copy this array in arrat of table
tableArray = [ProductFilteredArray mutableCopy];
[table reloadData];
}