ListView.h
资源名称:PushBox.rar [点击查看]
上传用户:qhdwjd2004
上传日期:2020-12-29
资源大小:362k
文件大小:1k
源码类别:
iPhone
开发平台:
Objective-C
- #import <CoreFoundation/CoreFoundation.h>
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #import "MyTable.h"
- #import "Map.h"
- @interface ListView : UIView
- {
- UIView *parentView;
- UINavigationBar *navBar;
- UINavigationItem *navTitle;
- MyTable *mapListTable;
- int current;
- }
- //////////////////////////////////////////////////////
- // 视图函数
- //////////////////////////////////////////////////////
- - (id)initWithFrame:(CGRect)rect;
- - (void)dealloc;
- - (void)navigationBar:(UINavigationBar *)navbar buttonClicked:(int)button;
- - (void)setNavBar:(int)state withTitle:(NSString*)title;
- //////////////////////////////////////////////////////
- // 加载/保存
- //////////////////////////////////////////////////////
- -(void)loadChapterList;
- -(void)loadMapList;
- //////////////////////////////////////////////////////
- // 设置
- //////////////////////////////////////////////////////
- -(void)setParentView:(UIView*)view;
- -(void)itemSelected:(id)value;
- -(void)deleteMap:(NSString*)mapfile;
- @end