UI控件闪灯

做出点一个控件然后他和他上下左右的4个控件一起变色。

#import "ViewController.h"
@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    //每个方块的高度和宽度
   CGFloat width=50    ;
    CGFloat height=50;
    //列数
    int lie=5;
    //一行之中的方块间隙
    CGFloat Xjianxi=(self.view.frame.size.width-width*lie)/(lie +1);
    //一列之中的方块间隙
    CGFloat Yjianxi=30;
    self.number=1;
    //循环,
    for (int i=0; i<45; i++) {
        int hangshu=i/lie;
        int lieshu=i%lie;
        self.butn=[[UIButton alloc]initWithFrame:CGRectMake(Xjianxi+lieshu*(Xjianxi+width), Yjianxi+hangshu*(height+Yjianxi), width, height)];
        self.butn.backgroundColor=[UIColor blueColor];
        self.view.tag=100;

        [self.butn addTarget:self action:@selector(Discoloration:) forControlEvents:UIControlEventTouchUpInside];
        [self.view addSubview:self.butn];
        self.butn.tag=self.number++;

    }

        }

-(void)change
{
    if (self.backgroundColor==[UIColor redColor]) {
        self.backgroundColor=[UIColor blueColor];
    }
    else{
        self.backgroundColor=[UIColor redColor];
    }
}

-(void)Discoloration:(UIButton*)btn
{
//    [[self.view viewWithTag:btn.tag] change];
//    [[self.view viewWithTag:btn.tag-1] change];
//    [[self.view viewWithTag:btn.tag+1] change];
//    [[self.view viewWithTag:btn.tag+5] change];
//    [[self.view viewWithTag:btn.tag-5]change];
    self.butn=btn;

    if (self.butn.tag==1) {
        [[self.view viewWithTag:btn.tag ] change];
        [[self.view viewWithTag:btn.tag+1] change];
        [[self.view viewWithTag:btn.tag+5] change];
    }
        else if(self.butn.tag==5)
        {
            [[self.view viewWithTag:btn.tag] change];
            [[self.view viewWithTag:btn.tag-1] change];
            [[self.view viewWithTag:btn.tag+5] change];
        }
        else if(self.butn.tag==41)
        {
            [[self.view viewWithTag:btn.tag] change];
            [[self.view viewWithTag:btn.tag-5] change];
            [[self.view viewWithTag:btn.tag+1] change];
        }
        else if(self.butn.tag==45)
        {
            [[self.view viewWithTag:btn.tag] change];
            [[self.view viewWithTag:btn.tag-1] change];
            [[self.view viewWithTag:btn.tag-5] change];
        }
        else if(self.butn.tag%5==1)
        {
            [[self.view viewWithTag:btn.tag] change];
            [[self.view viewWithTag:btn.tag-5] change];
            [[self.view viewWithTag:btn.tag+1] change];
            [[self.view viewWithTag:btn.tag+5] change];
        }
        else if(self.butn.tag%5==0)
        {
            [[self.view viewWithTag:btn.tag] change];
            [[self.view viewWithTag:btn.tag-5] change];
            [[self.view viewWithTag:btn.tag-1] change];
            [[self.view viewWithTag:btn.tag+5] change];
        }
        else if(self.butn.tag%5==1)
        {
            [[self.view viewWithTag:btn.tag] change];
            [[self.view viewWithTag:btn.tag-5] change];
            [[self.view viewWithTag:btn.tag+1] change];
            [[self.view viewWithTag:btn.tag-5] change];
        }
        else
        {
            [[self.view viewWithTag:btn.tag] change];
            [[self.view viewWithTag:btn.tag-1] change];
            [[self.view viewWithTag:btn.tag+1] change];
            [[self.view viewWithTag:btn.tag-5] change];
            [[self.view viewWithTag:btn.tag+5] change];
        }
    }

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end
时间: 2024-11-02 23:20:50

UI控件闪灯的相关文章

android_常用UI控件_01_TextView3_点击打开新的activity

点击textview打开新的activity (1) MainActivity.java package com.example.android_textview_opennewactivity; import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.text.SpannableString; import android.text.Spanned;

android_常用UI控件_01_TextView4_rollingsubtitles效果加链接文字

(1)Mainactivity.java package com.example.android_textview_rollingsubtitles; import java.sql.Wrapper; import android.os.Bundle; import android.app.Activity; import android.text.Html; import android.text.TextUtils; import android.text.TextUtils.Truncat

C# WPF 使用委托修改UI控件

近段时间在自学WPF,是一个完全不懂WPF的菜鸟,对于在线程中修改UI控件使用委托做一个记录,给自已以后查询也给需要的参考: 界面只放一个RichTextBox,在窗体启动时开起两个线程,调用两个函数,每隔1秒写一次当前时间 一 界面XAML如下: <Window x:Class="WpfApplication1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation&qu

UI控件

在iOSAPP中,能在屏幕上显示的按钮.文本标签.文字输入框等等,都是UI控件. UIview: 苹果把所有UI控件的共同属性抽出来放在UIView中,即所有UI控件都是UIView的子类(不一定是直接子类). 注意:UIView继承自UIresponder,可以响应用户的操作. UIView的重要属性 frame:View的位置和宽高 bounce:相对于自己的左上角的位置和宽高 center:中心点的坐标 backgroundcolor:背景颜色 UIView的常用方法:UIView既可以显

Atitit.swt&#160;线程调用ui控件的方法

Atitit.swt 线程调用ui控件的方法 1 SwingUtilities.invokeLater1 2 display.asyncExec方法1 3  display.timerExec(500,timer);2 4 .但有时候并不一定要程序执行时就要定时检测,有时需要外部事情激发这就出现了第2种解决方案,写一个内置类,可以放在事件监听的方法中,然后激发:2 5 参考3 1   SwingUtilities.invokeLater SwingUtilities.invokeLater(ne

iOS UI控件没有显示时的调试技巧

1.遇到UI控件没有显示的问题,可以给这个控件设置背景色 假设这个控件是UIBUtton 如果背景色能显示,那问题就出在image和title值为空 如果背景色不能显示,重写控件的description方法,把控件的frame打印出来分析 2.以下是打印UIView的frame的分类 #import <UIKit/UIKit.h> @interface UIView (Log) @end 1 #import "UIView+Log.h" 2 3 @implementatio

JavaFX - UI控件 - 标签

  2标签(Label) 本章主要介绍如何使用标签(Label),该类位于JavaFX API的javafx.scene.control包中,用于显示一个文本元素. 接下来会介绍如何让文本元素自动换行来适应受限空间,添加一个图标,或使用视觉特效. 图2 - 1显示了标签的三种常见用法. 左边的标签是一个带图标的文本,中间的展示了旋转效果,右边的使用了自动换行设置. 图2 - 1 标签示例 这幅图显示了三个标签,他们被放在了同一行. 左边的标签有一个看起来像个放大镜的图标和一个"Searc

根据ui控件的字体计算占用的长度

//1.根据icon计算name的长度 CGFloat nameX = CGRectGetMaxX(_icon.frame) + kBorder; CGFloat nameY = iconY; //计算用户昵称的长度 CGSize nameSize = [_weiBo.name sizeWithFont:_name.font]; _name.frame = CGRectMake(nameX, nameY, nameSize.width, nameSize.height); //2.设置vip的f

《深入理解Windows Phone 8.1 UI控件编程》

<深入理解Windows Phone 8.1 UI控件编程>本书基于最新的Windows Phone 8.1 Runtime SDK编写,全面深入地论述了最酷的UI编程技术:实现复杂炫酷的动画.掌握布局原理.列表虚拟化原理.高性能列表实现.图表编程.控件原理等. 目录如下: <深入理解Windows Phone 8 .1 UI控件编程>目录 第1章 深入解析程序界面 1.1 XAML的原理 1.1.1 XAML的概念 1.1.2 XAML页面的编译 1.1.3 动态加载XAML 1