ios編程30天之---12天《考反應的撲克遊戲》

下面讓咱們來認識一下考反應的撲克牌遊戲 react



使用的技術: dom

1.)UIAlertView   :它時UIView中的提示框「類」,書寫方式以下 atom

UIAlertView alert=[[UIAlertView alloc]  initWithTile:@」」  message:@」 」 delegate:self   cancelButtonTitle:@」 」 otnerButtonTitles:@」  」]; spa


  在這裏咱們介紹一下Alert提示款類中幾個參數: .net

1. initWithTitle:表示咱們的提示框中的標題 代理

2. message:表示咱們提示框所提示的信息 orm

3. delegate:表示咱們的提示框中的代理協議 對象

4. cancelButtonTitle:表示提示框推出時的按鈕的名稱 遊戲

5. otherButtonTitle:表示若是除了推出按鈕外,若是還定義了其餘的按鈕的話這裏能夠定義其餘按鈕的名稱。 事件

  同時定義完成上面的內容以後要想提示框在界面中顯示出來的話咱們還必須調用show方法:[alert    show];

  2)若是咱們的文件中須要調用隨機數的:

   int (/double) number=rand();

3)定義定時器對象的時間屬性

   [NSTimer  scheduledTimerWithTimeInterval: (3.0)   //表示?

target:self    //目標爲本體

selector:@selector(selector的名字)

userInfo:@」」  //用戶信息一般時nil表示

repeats:NO    //表示定時器是否重複NO不重複YES重複執行。

]



.h文件

//

//  ViewController.h

//  KaoFanYingPuKeYouXi

//

//  Created by yuliyan on 13-5-12.

//  Copyright (c) 2013年 Y. All rights reserved.

//

//導包

#import <UIKit/UIKit.h>

#import <Foundation/Foundation.h>

//聲明程序界面控制器的名字

@interface ViewController : UIViewController

{

    //創建NSData數據流對象變量

    NSDate *startDate;

    //此處IBOutlet UIImageView創建圖像視圖,顯示時間文字,把所須要顯示的圖像告訴Interface'

    IBOutlet UIImageView *pokerImage;

}


//@Property中聲明程序中的複製屬性,加入在@interface中指定夫人相同的NSDate控件對象。

@property(nonatomic ,copy)NSDate *startDate;


//@property中聲明程序中的保存複製,加入在@interface中指定相同的UIImageView控件對象

@property(nonatomic ,retain)UIImageView *pokerImage;


//創建操做效應的方法,單擊按鈕顯示遊戲結果。


-(IBAction)pokerPressed;

@end

.m文件:

//

//  ViewController.m

//  KaoFanYingPuKeYouXi

//

//  Created by yuliyan on 13-5-12.

//  Copyright (c) 2013年 Y. All rights reserved.

//


#import "ViewController.h"


@interface ViewController ()


@end


@implementation ViewController


//告訴編譯器去合成今天方法中所須要的「數據流」對象的存儲器方法;


@synthesize startDate;


//本指令告訴編譯器去合成今天方法中所須要的「圖像試圖」控件中的存儲器方法。


@synthesize pokerImage;


//建立一個整數數據類型的數字,數據爲零不顯示撲克黑桃


int spadeOn = 0;


//視圖控制器讀取到內存後再進行調用,在程序顯讀到內存中加入額外的對顯示進行修改

- (void)viewDidLoad

{

    [super viewDidLoad];

// Do any additional setup after loading the view, typically from a nib.

    //    創建一個提高框對象alert,定義提示框中的內容

    

    UIAlertView *alert=[[UIAlertView alloc]  //爲對話框對象進行內存分配

                        

                        initWithTitle:@"考反映撲克遊戲"  //爲對話框設置標題

                        message:@"當黑桃出現時以最快的速度按下撲克。"   //提示框提示內容

                        delegate:self    //代理協議爲本體。

                        cancelButtonTitle:@"遊戲開始"   //取消按鈕的標題是「遊戲開始」

                        otherButtonTitles:nil];

    [alert show];     //顯示對話框、

    

}



//遊戲中單機按鈕時關閉提示框的事件方法;

-(void) alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex{

    //    把遊戲中撲克圖像視圖對象定義爲:「撲克的背面圖像文件」

    

    pokerImage.image=[UIImage imageNamed:@"pokerBack.png"];

    //出現黑桃整數變量數據爲「0」,表示遊戲中的綠燈沒有亮

    spadeOn=0;

    

    //    定義定時器對象的時間屬性值

    [NSTimer scheduledTimerWithTimeInterval:(3.0)

                                     target:self  //目標爲本體

                                   selector:@selector(onOtherAceTime)//選擇器名爲onOhterAceTime的方法

                                   userInfo:nil//表示表明用戶信息不存在

                                    repeats:NO  //NO 表示定時器不重複

     ];

    

}



//遊戲中出現黑桃的時間差的方法

-(void)onSpadeAceTimer{

    //把遊戲指示燈圖像視圖對象定義爲「撲克的黑桃圖像文件」

    

    pokerImage.image=[UIImage imageNamed:@"spadesAce.png"];

    //出現黑桃的整數變量數據爲「1」,表示遊戲中的黑桃出現

    spadeOn=1;

    

    //對象獲取時間差

    self.startDate=[NSDate date];

}


//遊戲中出現其餘的撲克的時間差的方法


-(void)onOtherAceTimer{

    

    //建立一個取得整數的變量,rand%2變量返回值「0」,「1」或「2」,隨機的三選一的整數

    int rNumber=rand()%3;

    //在Switch中使用rNumber整數變量做爲條件進行轉換

    switch(rNumber){

        case 0:

            //把遊戲指示燈圖像視圖對象定義爲「撲克梅花圖像文件」

            pokerImage.image=[UIImage imageNamed:@"clubsAce.png"];

            break;

        case 1:

            //把遊戲指示燈圖像視圖對象定義爲:「撲克的方片圖像文件」

            pokerImage.image=[UIImage imageNamed:@"diamonsAce.png"];

            break;

        case 2:

            //把遊戲指示燈圖像視圖對象定義爲:「撲克的紅桃圖像文件」

            pokerImage.image=[UIImage imageNamed:@"heartAce.png"];

            break;

        default:

            break;

            

    }

    //建立遊戲中考放映的隨機時間的差數值

    //建立整數變量對象,定義程序中隨機數除以七加一的數值

    int delay=((int)(random()%7)+1);

    //定義對象的時間屬性值

    [NSTimer scheduledTimerWithTimeInterval:(3.0+delay)//3s加隨機時間差數值

                                     target:self   //目標是本體

                                   selector:@selector(onSpadsAceTimer)//選擇器的名爲onSpadesAceTimer的方法

                                   userInfo:nil //nil表示用戶信息不存在

                                    repeats:NO];//NO代表定時器不重複

    

}



//創建操做效應的方法,單機遊戲中撲克的透明按鈕,計算反應時間

-(IBAction)pokerPressed{

    

    

    //建立雙位數變量對象,定義程序中反應時間數值,獲取對象時間差數值「self.startDate」

    //此處「*-1000」把數值轉化成毫秒顯示

    double noSeconds=(double)[self.startDate timeIntervalSinceNow]*1000;

    //建立遊戲的反應時間文字的變量對象,定義文字內容,返回反應時間

    NSString *reactionTime=[[NSString alloc] initWithFormat:@"好樣的!你的響應速度時%1.0f毫秒,再來一次,創造更好的成績...",noSeconds];

    

    //當黑桃沒出現時的條件語句

    if(spadeOn==0){

        

        //更新反應時間文字對象內容是

        reactionTime=@"請不要着急,等到黑桃出現時才能按下撲克";

        //創建一個提示框對象alert,定義提示框的內容

        UIAlertView *alert=[[UIAlertView alloc]

                            initWithTitle:@"Day12"  //提示框的標題

                            message:reactionTime  //提示信息的 內容

                            delegate:self    //代理協議爲本體

                            cancelButtonTitle:@"肯定"  //取消按鈕的標題

                            otherButtonTitles:nil  //其餘按鈕的標題爲空

                            ];

       

        //顯示對話框對象

        [alert show];

        

    }

}

- (void)didReceiveMemoryWarning

{

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}


@end

相關文章
相關標籤/搜索