我想在我的應用程序中使用UISearchBar搜索圖像。我在tableViewController中有超過100個圖像,每個圖像都包含名稱和關鍵字(例如imageName = u1-1f.png,u1-2f.png,... Keyword = Bonds,Carbohydrates)。我想搜索關鍵詞「債券」,它會導致u1-1f.png等。我正在使用plist,並從plist獲得數據到數組,如何在iOS中搜索圖像
NSString *path = [[NSBundle mainBundle] pathForResource:@"keywords" ofType:@"plist"];
NSMutableDictionary *myDictionary = [[NSMutableDictionary alloc] initWithContentsOfFile:path];
NSArray* allmyKeys = [myDictionary allValues];
NSLog(@"%@", allmyKeys);
如何從搜索欄搜索圖像。