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

小技巧----随机背景颜色

时间:2015-09-25 21:44:23      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:

#define COLOR_VALUE arc4random() % 256 /255.0//宏定义

@interface FirstViewController ()
{
    NSTimer *_timer;
}//定义一个事件的属性

[self createBackCorlor];//方法的调用

#pragma mark - 定时器方法
- (void)createBackCorlor
{
    _timer = [NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(onTimer) userInfo:nil repeats:YES];
}

#pragma mark - 定时器方法
- (void)onTimer
{
    self.view.backgroundColor = [UIColor colorWithRed:COLOR_VALUE green:COLOR_VALUE blue:COLOR_VALUE alpha:1];
}

 

以上做的是让self背景颜色每0.5秒随机变换

小技巧----随机背景颜色

标签:

原文地址:http://www.cnblogs.com/wanghengheng/p/4839475.html

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