MainView.h
资源名称:PushBox.rar [点击查看]
上传用户:qhdwjd2004
上传日期:2020-12-29
资源大小:362k
文件大小:2k
源码类别:
iPhone
开发平台:
Objective-C
- #import <CoreFoundation/CoreFoundation.h>
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #import <CoreGraphics/CGColor.h>
- #import <UIKit/UITextView.h>
- #import <UIKit/UIAutocorrectImageView.h>
- #import <UIKit/UINavigationBar.h>
- #import <UIKit/UINavigationItem.h>
- #import <UIKit/UISegmentedControl.h>
- #import <UIKit/UITransitionView.h>
- #import <UIKit/UIAlertSheet.h>
- #import <UIKit/UIWebView.h>
- #import <Foundation/NSURLRequest.h>
- #import <GraphicsServices/GraphicsServices.h>
- #import <LayerKit/LayerKit.h>
- #import <LayerKit/LKTransform.h>
- #import "CoverView.h"
- #import "GameView.h"
- #import "ListView.h"
- #import "SettingView.h"
- #import "AboutView.h"
- #import "Map.h"
- @interface MainView : UIView
- {
- ////////////////////////////////
- // 消息提示
- ////////////////////////////////
- UIAlertSheet *messageSheet;
- ////////////////////////////////
- // 定义子视图
- ////////////////////////////////
- UITransitionView *transView;
- CoverView *coverView;
- GameView *gameView;
- ListView *listView;
- SettingView *settingView;
- AboutView *aboutView;
- ///////////////////////////////
- // 定义视图矩形
- ///////////////////////////////
- CGRect viewRect;
- ///////////////////////////////
- // 视图切换效果
- ///////////////////////////////
- NSArray *aEffect;
- }
- //////////////////////////////////////////////////////
- // MainView 函数
- //////////////////////////////////////////////////////
- - (id)initWithFrame:(CGRect)rect;
- - (void)dealloc;
- //////////////////////////////////////////////////////
- // 公共函数
- //////////////////////////////////////////////////////
- // 显示提示信息(信息,标题)
- -(void)showMessage:(NSString *)msg Title:(NSString *)title;
- // 切换视图
- - (void)showView:(int)viewname;
- // 切换视图
- - (void)transTo:(UIView *)view;
- // 显示封面
- - (void)showCover;
- // 设备方向发生改变
- - (void)orientationChanged:(int)orientation;
- // 程序将退出
- - (void)appWillExit;
- //////////////////////////////////////////////////////
- // 菜单响应
- //////////////////////////////////////////////////////
- - (void)startGame;
- - (void)continueGame;
- - (void)customGame:(bool)isCustomMap;
- - (void)showAbout;
- // 自定义地图选择
- -(void)mapSelected:(NSString*)mappath;
- // 关卡选择
- -(void)characterSelected:(int)cindex;
- @end