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

OC实现简单的霓虹灯功能

时间:2014-08-22 10:58:16      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   for   ar   2014   log   

//比较简单的动态效果,仅仅由内到外不能换向,颜色是随机生成的

//随机生成7中颜色

<span style="font-size:18px;"> for (int i = 0;i < 7;i++) {
        _view = [[UIView alloc]initWithFrame:CGRectMake((20 + i * 20), (114 + i * 20 ),280 - (i * 40) ,280 - (i * 40))];
        _view.tag = 100 + i;
        _view.backgroundColor = [UIColor colorWithRed:((arc4random() % 256) / 255.0) green:(arc4random() % 256) / 255.0 blue:(arc4random() % 256) / 255.0 alpha:1.0];
               [self.window addSubview:_view];
        [_view release];
    }
</span>
<p class="p1"><span style="font-size:18px;">
</span></p>

//设置timer

<span style="font-size:18px;">[NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(change) userInfo:nil repeats:YES];</span>

//实现timer
<span style="font-size:18px;">- (void)change
{
    
    UIColor *color1  = [self.window viewWithTag:100].backgroundColor;
    for (int i = 100; i < 106; i++) {
        [self.window viewWithTag:i].backgroundColor = [self.window viewWithTag:i + 1].backgroundColor;
    }
    [self.window viewWithTag:106].backgroundColor = color1;


}</span>
上传的图片没动态效果...
bubuko.com,布布扣

OC实现简单的霓虹灯功能,布布扣,bubuko.com

OC实现简单的霓虹灯功能

标签:style   blog   http   color   for   ar   2014   log   

原文地址:http://blog.csdn.net/canyeyj/article/details/38750409

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