我在这个问题上快疯了:我正在使用 AQGridView 显示我从 SQLite 检索的数组中的一些图像,但我无法使用我放入 Detail 区域的 TitleView 的 UISearchBar 过滤网格一个拆分视图控制器。你能帮我一些逻辑段落或一个例子吗?
谢谢!
我在这个问题上快疯了:我正在使用 AQGridView 显示我从 SQLite 检索的数组中的一些图像,但我无法使用我放入 Detail 区域的 TitleView 的 UISearchBar 过滤网格一个拆分视图控制器。你能帮我一些逻辑段落或一个例子吗?
谢谢!
解决了!
删除所有对象后重新计算数组_icons..
[_icons removeAllObjects];
searching = YES;
NSInteger numeroElem = [subcatList getSize];
for ( NSUInteger i = 0; i < numeroElem; i++ )
{
NSDictionary *itemAtIndex = (NSDictionary *)[subcatList objectAtIndex:i];
NSString *titolo_cat = [itemAtIndex objectForKey:@"titolo"];
NSComparisonResult result = [titolo_cat compare:searchText options:(NSCaseInsensitiveSearch|NSDiacriticInsensitiveSearch) range:NSMakeRange(0, [searchText length])];
if (result == NSOrderedSame)
{
ETC ETC.......
[_icons addObject: image];
}
};