SectionsViewController.h
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:1k
源码类别:

iPhone

开发平台:

MultiPlatform

  1. //
  2. //  SectionsViewController.h
  3. //  Sections
  4. //
  5. //  Created by Jeff LaMarche on 7/10/08.
  6. //  Copyright __MyCompanyName__ 2008. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface SectionsViewController : UIViewController 
  10. <UITableViewDataSource, UITableViewDelegate, UISearchBarDelegate>
  11. {
  12. IBOutlet UITableView *table;
  13. IBOutlet UISearchBar *search;
  14. NSDictionary *allNames;
  15. NSMutableDictionary *names;
  16. NSMutableArray  *keys;
  17. }
  18. @property (nonatomic, retain) UITableView *table;
  19. @property (nonatomic, retain) UISearchBar *search;
  20. @property (nonatomic, retain) NSDictionary *allNames;
  21. @property (nonatomic, retain) NSMutableDictionary *names;
  22. @property (nonatomic, retain) NSMutableArray *keys;
  23. - (void)resetSearch;
  24. - (void)handleSearchForTerm:(NSString *)searchTerm;
  25. @end