IOS 作业项目(3) 霓虹灯效果
先上效果图
#import "CHViewController.h"
@interface CHViewController ()
{
int i;
int j;
}
@property NSInteger isStart;
@property (nonatomic,retain) NSMutableArray *viewArray;
@property (nonatomic,retain) UIView *neonView;
@property (nonatomic,retain) NSTimer *timer;
@end
static inline CGRect rectWithScale(CGRect rect,CGFloat scale)
{
rect.size.width+=scale;
rect.size.height+=scale;
return rect;
}
@implementation CHViewController
-(UIColor *)getRandomColor:(NSInteger)max add:(NSInteger)num
{
CGFloat r,g,b;
r=arc4random()%max +num;
g=arc4random()%max +num;
b=arc4random()%max +num;
return [UIColor colorWithRed:r/225.0 green:g/225.0 blue:b/225.0 alpha:1.0f];
}
- (void)viewDidLoad
{
i=0;//视图下标
j=0;
_isStart=0;
///////////背景色
UIView *backGround=[[UIView alloc]initWithFrame:self.view.bounds];
backGround.backgroundColor= [self getRandomColor:31 add:95];
[self.view addSubview:backGround];
//////////标题栏视图设置
UIView *titleView=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 20)];
titleView.backgroundColor=[UIColor colorWithRed:33/255.0 green:33/255.0 blue:33/255.0 alpha:0.5];
[backGround addSubview:titleView];
//////////按钮设置
UIButton *button= [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame=CGRectMake(20, backGround.bounds.size.height-130, 280, 40);
[button setTitle:@"Start" forState:UIControlStateNormal];
[button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
button.backgroundColor=[UIColor whiteColor];
[backGround addSubview:button];
[button addTarget:self action:@selector(onClick:) forControlEvents:UIControlEventTouchUpInside];
///////////////霓虹灯框视图设置
_neonView=[[UIView alloc]initWithFrame:CGRectMake(50, 60, 220, 220)];
_neonView.backgroundColor=[UIColor whiteColor];
[backGround addSubview:_neonView];
//////////////zoom视图入数组
_viewArray=[[NSMutableArray alloc]init];
for (int index=0; index<1000; index++) {
UIView *view=[[UIView alloc]initWithFrame:CGRectMake(0,0,5,5)];
CGPoint point=CGPointMake(CGRectGetMidX(_neonView.bounds), CGRectGetMidY(_neonView.bounds));
view.center=point;
view.bounds=rectWithScale(view.bounds, 4.3f);
view.backgroundColor=[self getRandomColor:256 add:0];
[_viewArray addObject:view];
}
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
-(void)onClick:(UIButton *)button
{
i=0;
if (_isStart==0) {
_timer=[NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(showTime:) userInfo:nil repeats:YES];
_isStart=1;
[button setTitle:@"Stop" forState:UIControlStateNormal];
}
else
{
_isStart=0;
[button setTitle:@"Start" forState:UIControlStateNormal];
[_timer invalidate];
}
}
-(void)showTime:(NSTimer *)timer
{
for (j=0; j<i; j++) {
if (((UIView*)_viewArray[j]).bounds.size.height>=CGRectGetHeight(_neonView.bounds)) {
((UIView*)_viewArray[j]).bounds=CGRectMake(0,0,5,5);
((UIView*)_viewArray[j]).center=CGPointMake(CGRectGetMidX(_neonView.bounds), CGRectGetMidY(_neonView.bounds));
[((UIView*)_viewArray[j]) removeFromSuperview];
//[_neonView addSubview:_viewArray[j]];
}
((UIView*)_viewArray[j]).bounds=rectWithScale(((UIView*)_viewArray[j]).bounds, 5.0f);
// ((UIView*)_viewArray[j]).backgroundColor=[self getRandomColor:256 add:0];
if (i<1000)
[_neonView addSubview:_viewArray[j]];
}
if (i<1000) {
i++;
}
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
/* UIView *view= }*/
}
@end
IOS 作业项目(3) 霓虹灯效果的更多相关文章
- IOS 作业项目(4)步步完成 画图 程序(中)
一,承接上文,继续本文 [UIButton buttonWithType:UIButtonTypeRoundedRect]; 如此声明的按钮才会有点击闪动的效果!如果直接frame方式声明就不会有. ...
- IOS 作业项目(2) 画图(保存,撤销,笔粗细设定功能)
先上效果图
- IOS 作业项目(1) 关灯游戏 (百行代码搞定)
1,准备工作,既然要开关灯,就需要确定灯的灯的颜色状态 首先想到的是扩展UIColor
- IOS 作业项目 TableView两个section中cell置顶功能实现
点击cell会置顶,其他的下移
- IOS 作业项目(4)步步完成 画图 程序(问题处理)终结
一,解决换色程序崩溃问题 程序崩溃是因为颜色的内存被释放,添加如下类的内容即可 @implementation TuyaPath - (id)init { self = [super init]; i ...
- IOS 作业项目(4)步步完成 画图 程序(剧终)
// // CHViewController.m // SuperDrawingSample // // Created by JaikenLI on 13-11-21. // Copyrig ...
- IOS 作业项目(4)步步完成 画图 程序(中续)
一,程序布局整理 前言://1,程序启动//2,程序流程框架//3,程序界面一致//4,程序界面功能, //这里只做页面的固定功能, //在首次创建界面时,我们会指定好固定事件触发前的固定方法 //至 ...
- IOS 作业项目(4)步步完成 画图 程序(上)
先上流程图
- GitHub Android 最火开源项目Top20 GitHub 上的开源项目不胜枚举,越来越多的开源项目正在迁移到GitHub平台上。基于不要重复造轮子的原则,了解当下比较流行的Android与iOS开源项目很是必要。利用这些项目,有时能够让你达到事半功倍的效果。
1. ActionBarSherlock(推荐) ActionBarSherlock应该算得上是GitHub上最火的Android开源项目了,它是一个独立的库,通过一个API和主题,开发者就可以很方便 ...
随机推荐
- BluetoothGatt API
punlic final class BluetoothGatt继承自Object , 实现了BluetoothProfile接口/** 相关的蓝牙协议可http://www.cnki.net/KCM ...
- hdu---(5038)Grade(胡搞)
Grade Time Limit: 3000/1500 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)Total Sub ...
- ARM指令集(上)
ADuC702x可以用两套指令集:ARM指令集和Thumb指令集.本小节介绍ARM指令集.在介绍ARM指令集之前,先介绍指令的格式. A.2.1 指令格式 (1)基本格式 ...
- 张艾迪(创始人):出现在世界224C之前的这些时间
出现在世界224C之前的这些时间 坐在大巴车上.用手塞住耳朵.繁杂的大巴车上.总会听见不喜欢听的声音.那时只有22.23岁的我.就像发明一些东西把所有不喜欢的声音都屏蔽掉.就像防火墙一样.那时候拥抱所 ...
- IO流--复制picture ,mp3
import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.FileInputStream; import ...
- 11 自定制shell提示符
shell提示符 huiubantu@ubuntu:~$ shell提示符保存在PS1变量中 包括用户名,主机名,当前工作目录 可以通过echo命令查看PS1的内容 huiubantu@ubuntu ...
- FZU 1914 Funny Positive Sequence
题目链接:Funny Positive Sequence 题意:给出一个数列,如果它的前i(1<=i<=n)项和都是正的,那么这个数列是正的,问这个数列的这n种变换里, A(0): a1, ...
- 检索 COM 类工厂中 CLSID 为 {000209FF-0000-0000-C000-000000000046} 的组件失败,原因是出现以下错误: 8000401a 因为配置标识不正确,系统无法开始服务器进程。请检查用户名和密码。 (异常来自 HRESULT:0x8000401A)。
检索 COM 类工厂中 CLSID 为 {000209FF-0000-0000-C000-000000000046} 的组件失败,原因是出现以下错误: 8000401a 因为配置标识不正确,系统无法开 ...
- Android Webview 背景透明
两个关键点: 1 fBarParams.format = PixelFormat.RGBA_8888; 2 mWebView.setBackgroundColor(Color.TRAN ...
- wp8.1 Study10:APP数据存储
一.理论 1.App的各种数据在WP哪里的? 下图很好介绍了这个问题.有InstalltionFolder, knownFolder, SD Card... 2.一个App的数据存储概览 主要分两大部 ...