1.项目代码:

@interface NextViewController ()

{

int r ;//色块层数的全局变量

int m;//后面用于tag值的变化

UIView *view;//色块

NSArray *color;//颜色库

UIImageView *baview;//作为色块的地图,也可以用UIView

UILabel *label;

}

@end

@implementation NextViewController

- (void)viewDidLoad {

//    赋初值 建立最开始的模型

[super viewDidLoad];

self.title = @"找色块";

r = 2;//初始化状态为2层

m = 1;

self.view.backgroundColor = [UIColor whiteColor];//初始颜色为白色

[self color];

[self loadData];

[self label];

}

//颜色库

-(void)color{

color = @[[UIColor colorWithRed:0.494 green:0.905 blue:0.493 alpha:1.000],[UIColor greenColor],[UIColor colorWithRed:0.000 green:0.091 blue:0.998 alpha:1.000],[UIColor cyanColor],[UIColor yellowColor],[UIColor purpleColor],[UIColor lightGrayColor],[UIColor darkGrayColor],[UIColor blackColor],[UIColor colorWithRed:0.868 green:0.336 blue:0.760 alpha:1.000],[UIColor magentaColor],[UIColor orangeColor],[UIColor brownColor]];}

//--------------------创建色块-------------------

-(void)loadData{

int index = arc4random()%(r*r)+1;

int ii = arc4random()%color.count;

baview = [[UIImageView alloc]initWithFrame:CGRectMake(0, 120, CGRectGetWidth(self.view.frame), CGRectGetWidth(self.view.frame))];

baview.backgroundColor = [UIColor whiteColor];

//    使用UIImageView必须要使用下面语句可以使用手势

baview.userInteractionEnabled = YES;

[self.view addSubview: baview];

for (int n =0; n<r; n++)

{

for (int i = 0; i<r; i++)

{

CGFloat k = CGRectGetWidth(self.view.frame);

view = [[UIView alloc]initWithFrame:CGRectMake(20+(k-40)/r*i, 20+(k-40)/r*n, (k-60)/r, (k-60)/r)];

view.layer.cornerRadius = 10;//设置拐角

view.layer.masksToBounds = YES;

view.backgroundColor = color[ii];//随机颜色

view.tag = r*i+n+1;

//任意选择一个模块添加点击手势(通过tag值随机选择)

if (index == view.tag)

{

UITapGestureRecognizer *tapge = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tanp:)];

tapge.numberOfTapsRequired = 1;

view.alpha = 0.5;

//    添加手势

[view addGestureRecognizer:tapge];

}

[baview addSubview:view];

}

}

}

-(void)tanp :(UITapGestureRecognizer*)sender{

r++;

m++;

[self loadData];//点击后 重新更新色块

[self text];//最下面文字显示

[self label];//最上端文字显示

}

//文字显示模块,判断达到了多少 出现什么文字

-(void)text{

if (r>5&&r<7) {

UILabel *llabel = [[UILabel alloc]initWithFrame:CGRectMake(self.view.frame.size.width-150-100, self.view.frame.size.height/2+150, 150, 50)];

llabel.tag = 100;

llabel.textAlignment = YES;

llabel.text = @"你的视力很好哦!";

[self.view addSubview:llabel];

}

if (r>7&&r<11) {

UILabel *llabel = (UILabel*)[self.view viewWithTag:100];

llabel.hidden = YES;

}

if (r>20&&r<23) {

UILabel *llabel = [[UILabel alloc]initWithFrame:CGRectMake(self.view.frame.size.width-150-100, self.view.frame.size.height/2+150, 150, 50)];

llabel.tag = 100;

llabel.textAlignment = YES;

llabel.text = @"你真牛!!!";

[self.view addSubview:llabel];

}

if (r>35&&r<40) {

UILabel *llabel = [[UILabel alloc]initWithFrame:CGRectMake(self.view.frame.size.width-150-100, self.view.frame.size.height/2+150, 150, 50)];

llabel.tag = 100;

llabel.textAlignment = YES;

llabel.text = @"大神,顶礼膜拜!!!!!!";

[self.view addSubview:llabel];

}

if (r>40) {

UILabel *llabel = (UILabel*)[self.view viewWithTag:100];

llabel.hidden = YES;

}

}

//数字块,显示到了第几层

-(void)label{

label = [[UILabel alloc]initWithFrame:CGRectMake(self.view.frame.size.width-150-100, self.view.frame.size.height/2-250, 150, 50)];

label = [UIColor whiteColor];

label.tag = m+500;

label.textAlignment = YES;

NSString *te = [NSString stringWithFormat:@"现在是第%d层",r-1];

label.text = te;

label.textColor = [UIColor blackColor];

[self.view addSubview:label];

[self remove];

}

//移除出现过的视图,以免发生重叠

-(void)remove{

UITextField *textf = (UITextField *)[self.view viewWithTag:label.tag - 1 ];

[textf removeFromSuperview];

}

- (void)didReceiveMemoryWarning {

[super didReceiveMemoryWarning];

// Dispose of any resources that can be recreated.

}

@end

2.效果

IOS开发小项目—找色块游戏的更多相关文章

  1. iOS开发小技巧 - runtime适配字体

    iOS开发小技巧 - runtime适配字体 版权声明:本文为博主原创文章,未经博主允许不得转载,有问题可联系博主Email: liuyongjiesail@icloud.com 一个iOS开发项目无 ...

  2. iOS开发小技巧 - UILabel添加中划线

    iOS开发小技巧 遇到的问题: 给Label添加中划线,然后并没有效果 NSString *str = [NSString stringWithFormat:@"合计金额 ¥%.2f&quo ...

  3. 李洪强iOS开发之 - 项目架构

    李洪强iOS开发之 - 项目架构 01 - 在Appdelegate中设置跟控制器 //导入头文件

  4. iOS开发-项目的完整重命名方法,图文教程。

    前言:在IOS开发中,有时候想改一下项目的名字,都会遇到很多麻烦.直接改项目名吧,XCODE又不会帮你改所有的名字.总是有很多文件.文件夹或者是项目设置的项.而且都是不能随便改的,有时候改着改着,编译 ...

  5. iOS开发--完整项目

    完整项目 Phonetic Swift 写的一个 iOS 版的 Phonetic Contacts,功能很多,其中昵称功能非常实用,已在 GitHub 开源并上架 App Store v2ex – v ...

  6. iOS开发小技巧 -- tableView-section圆角边框解决方案

    [iOS开发]tableView-section圆角边框解决方案 tableView圆角边框解决方案 iOS 7之前,图下圆角边框很容易设置 iOS 7之后,tableviewcell的风格不再是圆角 ...

  7. ios开发小技巧之提示音播放与震动

    在ios开发中,有时候我们需要频繁播放某种提示声音,比如微博刷新提示音.QQ消息提示音等,对于这些短小且需要频繁播放的音频,最好将其加入到系统声音(system sound)里. 注意: 需要播放的音 ...

  8. iOS学习——iOS开发小知识点集合

    在iOS学习和开发过程中,经常会遇到一些很小的知识点和问题,一两句话就可以解释清楚了,这样的知识点写一篇随笔又没有必要,但是又想mark一下,以备不时之需,所以就有了本文.后面遇到一些小的知识点会不断 ...

  9. 在IOS开发中,项目的目录结构如何搭建?

    网上有很多关于IOS开发的学习资料.然而却很少有关于设计一个项目时,如何设计其目录结构?这对于自学IOS的程序猿们,无疑有诸多不利.接下来,我就简单的谈下真正在公司中,项目的目录结构如何搭建: 以上为 ...

随机推荐

  1. Oracle PL/SQL高级应用 存储过程

    有名字的Plsql块,成为Oracle的对象,在以后用到时可以直接调用. CREATE OR REPLACE PROCEDURE myproc(id IN varchar2) IS -IN 为输入参数 ...

  2. soapdenovo

    配置文件中的=号两边不能有空格,否则会报错 SOAPdenovo-63mer_v2.0 all -s TongJiN2.config -p 25 -K 63 -d 1 -R  -F -o Lily_2 ...

  3. jQuery关于Select的操作

    jQuery获取Select选择的Text和Value: 1. var checkText=jQuery("#select_id").find("option:selec ...

  4. centos 服务器操作

     CENTOS下创建FTP登录用户 yum install vsftpd2.启动/重启/关闭vsftpd服务器[root@localhost ftp]# /sbin/service vsftpd re ...

  5. ion-nav-view的学习 和理解

    当用户在你的app中浏览时,Ionic能够保持检测他们的浏览历史.通过了解他们的浏览历史,向左或向右滑动时可以正确的在视图间转换,或不转换.一个额外的好处是Ionic的导航系统具有可以管理多个历史记录 ...

  6. CollectionsAPI

    鉴于总用,总结一下: 类别 方法 查找 binarySearch. 返回 enumeration.checkedSortedMap 判断 max.min 移动 reverse(List).revers ...

  7. ZOJ 1115 Digital Roots

    原题链接 题目大意:给一个数字,每一位相加求和,不断重复过程,直到剩一位数字. 解法:考虑到输入的数字可以很大,把输入按照字符串格式读入,再逐位处理. 参考代码: #include <iostr ...

  8. PHP pdao用法总结

    $sql = 'SELECT name, colour, calories     FROM fruit     WHERE calories < :calories AND colour =  ...

  9. 【转】 iOS 开发之静态库.a和动态库详解 -- 不错

    原文网址:http://blog.csdn.net/lxl_815520/article/details/52154331 一, 简单介绍 1.什么是库 库是程序代码的集合,是共享程序代码的一种方式 ...

  10. when compile /home/wangxiao/NVIDIA-CUDA-7.5 SAMPLES, it warning: gcc version larger than 4.9 not supported, so: old verson of gcc and g++ are needed

    1. when compile /home/wangxiao/NVIDIA-CUDA-7.5 SAMPLES, it warning: gcc version larger than 4.9 not ...