ListView.h
上传用户:qhdwjd2004
上传日期:2020-12-29
资源大小:362k
文件大小:1k
源码类别:

iPhone

开发平台:

Objective-C

  1. #import <CoreFoundation/CoreFoundation.h>
  2. #import <Foundation/Foundation.h>
  3. #import <UIKit/UIKit.h>
  4. #import "MyTable.h"
  5. #import "Map.h"
  6. @interface ListView : UIView
  7. {
  8. UIView         *parentView;
  9.     UINavigationBar  *navBar;
  10.     UINavigationItem    *navTitle;
  11. MyTable         *mapListTable;
  12.     int                 current;
  13. }
  14. //////////////////////////////////////////////////////
  15. // 视图函数
  16. //////////////////////////////////////////////////////
  17. - (id)initWithFrame:(CGRect)rect;
  18. - (void)dealloc;
  19. - (void)navigationBar:(UINavigationBar *)navbar buttonClicked:(int)button;
  20. - (void)setNavBar:(int)state withTitle:(NSString*)title;
  21. //////////////////////////////////////////////////////
  22. // 加载/保存
  23. //////////////////////////////////////////////////////
  24. -(void)loadChapterList;
  25. -(void)loadMapList;
  26. //////////////////////////////////////////////////////
  27. // 设置
  28. //////////////////////////////////////////////////////
  29. -(void)setParentView:(UIView*)view;
  30. -(void)itemSelected:(id)value;
  31. -(void)deleteMap:(NSString*)mapfile;
  32. @end