码迷,mamicode.com
首页 > 其他好文 > 详细

关灯游戏的实现

时间:2014-08-24 11:40:02      阅读:383      评论:0      收藏:0      [点我收藏+]

标签:uiimage   lamp   ui   

 UIImage *ima = [UIImage imageNamed:@"1.png"];
    for (int i = 0; i < 5; i++) {
        for (int j = 0; j < 5; j++) {
            ButtonSubview * button = [ButtonSubview buttonWithType:UIButtonTypeSystem];
            button.frame = CGRectMake(5 + 63 * j, 100 + 63 * i, 58, 58);
            [button setBackgroundImage:ima forState:UIControlStateNormal];
            [button addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];
            button.tag = 100 + i * 10 + j;
            button.flag = YES;  //0
            [self.view addSubview:button];
        }
    }
    ButtonSubview *btn = [ButtonSubview buttonWithType:UIButtonTypeSystem];
    btn.frame = CGRectMake(100, 450, 120, 40);
    [btn setTitle:@"开始" forState:UIControlStateNormal];
    [btn addTarget:self action:@selector(touch:) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:btn];
}

设置背景,以及开始按键

- (void)click:(ButtonSubview *)btn
{
    UIImage *lamp = [UIImage imageNamed:@"2.png"];
    UIImage *ima = [UIImage imageNamed:@"1.png"];
    NSInteger a[5] = {btn.tag, btn.tag + 1,btn.tag - 1,btn.tag + 10, btn.tag - 10};
    for (int i = 0; i < 5; i++) {
        ButtonSubview *button = (ButtonSubview *)[self.view viewWithTag:a[i]];
        if (button.flag == YES) {
            [button setBackgroundImage:lamp forState:UIControlStateNormal];
            button.flag = NO;
        }
        else{
            [button setBackgroundImage:ima forState:UIControlStateNormal];
            button.flag = YES;
        }
    }
}
//设置开始时随机亮的灯
- (void)touch:(ButtonSubview *)bun
{
    UIImage *lamp = [UIImage imageNamed:@"2.png"];
    UIImage *ima = [UIImage imageNamed:@"1.png"];
    for (int i = 100; i < 145; i++) {
        ButtonSubview *button = (ButtonSubview *)[self.view viewWithTag:i];
        button.flag = arc4random() % 2;
        if (button.flag == 1) {
            [button setBackgroundImage:lamp forState:UIControlStateNormal];
            button.flag = 0;
        }
        else{
            [button setBackgroundImage:ima forState:UIControlStateNormal];
            button.flag = 1;
        }
    }
}
设置控制周围灯的亮暗,直到最后将全部的灯点灭为止.

bubuko.com,布布扣

关灯游戏的实现

标签:uiimage   lamp   ui   

原文地址:http://blog.csdn.net/w_sx_/article/details/38794763

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!