From 869398ebfb18702b9de42f723ff8072b116eb04f Mon Sep 17 00:00:00 2001 From: matt handler Date: Fri, 29 Apr 2011 16:35:15 -0400 Subject: changing subscribedSources -> sources, adding instant level today/tomorrow/yesterday for section headers, setting status bar to black and showing once app loads, handling url just an nslog right now, updated image, added piccast:// protocol, setting up faves in the db, adding search and browse views --- Classes/SearchViewController.h | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Classes/SearchViewController.h (limited to 'Classes/SearchViewController.h') diff --git a/Classes/SearchViewController.h b/Classes/SearchViewController.h new file mode 100644 index 0000000..6888c9e --- /dev/null +++ b/Classes/SearchViewController.h @@ -0,0 +1,39 @@ +// +// 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 -- cgit v1.2.3