SectionsViewController.h
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:1k
源码类别:
iPhone
开发平台:
MultiPlatform
- //
- // SectionsViewController.h
- // Sections
- //
- // Created by Jeff LaMarche on 7/10/08.
- // Copyright __MyCompanyName__ 2008. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface SectionsViewController : UIViewController
- <UITableViewDataSource, UITableViewDelegate, UISearchBarDelegate>
- {
- IBOutlet UITableView *table;
- IBOutlet UISearchBar *search;
- NSDictionary *allNames;
- NSMutableDictionary *names;
- NSMutableArray *keys;
- }
- @property (nonatomic, retain) UITableView *table;
- @property (nonatomic, retain) UISearchBar *search;
- @property (nonatomic, retain) NSDictionary *allNames;
- @property (nonatomic, retain) NSMutableDictionary *names;
- @property (nonatomic, retain) NSMutableArray *keys;
- - (void)resetSearch;
- - (void)handleSearchForTerm:(NSString *)searchTerm;
- @end