CoverView.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 <GraphicsServices/GraphicsServices.h>
  5. #ifndef CoverView_H
  6. #define CoverView_H
  7. #define MenuNumber 4
  8. #define MenuWidth 200
  9. #define MenuItemHeight 40
  10. #define MenuX (320 - MenuWidth)/2
  11. #define MenuY 250
  12. #define MenuSplit 4
  13. #endif
  14. #import "Map.h"
  15. @interface CoverView : UIView
  16. {
  17. UIView *parentView;
  18. UIImage *StartImage;
  19. UIImage *ContinueImage;
  20. UIImage *CustomImage;
  21. UIImage *AboutGameImage;
  22. CGRect menu[MenuNumber];
  23. bool canContinue;
  24. }
  25. - (id)initWithFrame:(CGRect)rect;
  26. - (void)drawRect:(CGRect)rect;
  27. - (void)dealloc;
  28. - (void)updateview;
  29. - (void)setParentView:(UIView*)view;
  30. - (bool)isPoint:(CGPoint)pt InRect:(CGRect)rect;
  31. @end