CoverView.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 <GraphicsServices/GraphicsServices.h>
- #ifndef CoverView_H
- #define CoverView_H
- #define MenuNumber 4
- #define MenuWidth 200
- #define MenuItemHeight 40
- #define MenuX (320 - MenuWidth)/2
- #define MenuY 250
- #define MenuSplit 4
- #endif
- #import "Map.h"
- @interface CoverView : UIView
- {
- UIView *parentView;
- UIImage *StartImage;
- UIImage *ContinueImage;
- UIImage *CustomImage;
- UIImage *AboutGameImage;
- CGRect menu[MenuNumber];
- bool canContinue;
- }
- - (id)initWithFrame:(CGRect)rect;
- - (void)drawRect:(CGRect)rect;
- - (void)dealloc;
- - (void)updateview;
- - (void)setParentView:(UIView*)view;
- - (bool)isPoint:(CGPoint)pt InRect:(CGRect)rect;
- @end