// // SearchViewController.h // PicCast // // Created by Matthew Handler on 4/28/11. // Copyright 2011 Earl Industries. All rights reserved. // // returned feeds -> turn on/off // returned sets -> view // later: returned pics -> view // later: returned categories -> browse #import #import "HJObjManager.h" #import "PhotoViewController.h" #import "FMDatabase.h" #import "SectionDictionary.h" #import "Fetcher.h" #import "Source.h" @interface SearchViewController : UIViewController { //UINavigationController *topicsNavigationController; NSMutableDictionary *sourcesDictionary; SectionDictionary *tableDictionary; // structure to sync with table PhotoViewController *photoViewController; HJObjManager* objMan; FMDatabase* db; NSString *searchString; } @property (nonatomic, retain) IBOutlet UISearchBar *mainSearchBar; @property (nonatomic, retain) IBOutlet UITableView *tableView; @end