//
// GameView.h
// ShuRect
//
// Created by 东 王 on 12-3-30.
// Copyright (c) 2012年 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "GameAlertC.h"
@interface GameView : UIViewController<AlertBtnDelegate>
{
UIView *gameBackView;
UIView *gameBtnView;
NSMutableArray *gameNumArray;
int currentNum;
UIButton *gameNumBtn;
UIImage *redBtnImage;
UIImage *greenBtnImage;
UIButton *resetGameBtn;
UIImage *resetBtnNormalImage;
UIImage *resetBtnPressedImage;
UIButton *backGameBtn;
UIImage *backBtnNormalImage;
UIImage *backBtnPressedImage;
UILabel *stillTime;
int timeInt;
float timeFloat;
NSTimer *beginTime;
NSInteger rowNum;
NSInteger modNum;
}
@property (nonatomic, retain) UIView *gameBackView;
@property (nonatomic, retain) UIView *gameBtnView;
@property (nonatomic, retain) NSMutableArray *gameNumArray;
@property (nonatomic, retain) UIButton *gameNumBtn;
@property (nonatomic, retain) UIImage *redBtnImage;
@property (nonatomic, retain) UIImage *greenBtnImage;
@property (nonatomic, retain) UIButton *resetGameBtn;
@property (nonatomic, retain) UIImage *resetBtnNormalImage;
@property (nonatomic, retain) UIImage *resetBtnPressedImage;
@property (nonatomic, retain) UIButton *backGameBtn;
@property (nonatomic, retain) UIImage *backBtnNormalImage;
@property (nonatomic, retain) UIImage *backBtnPressedImage;
@property (nonatomic, retain) UILabel *stillTime;
@property (nonatomic) NSInteger rowNum;
@property (nonatomic) NSInteger modNum;
@property (nonatomic, retain) NSTimer *beginTime;
-(void)resetGame:(id)sender;
@end
- 1
- 2
前往页