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

UI:改变UIView背景颜色

时间:2014-12-26 14:39:04      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

//每隔一秒改变一次颜色

    [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(changeColor) userInfo:nil repeats:YES];



#pragma mark 改变颜色


- (void)changeColor{

    //动画开始

    [UIView beginAnimations:nil context:nil];

    [UIView setAnimationDuration:0.5];

    self.view.backgroundColor = [[UIColor alloc]initWithRed:(double)(arc4random()%256)/256 green:(double)(arc4random()%256)/256 blue:(double)(arc4random()%256)/256 alpha:0.5];

    //动画结束

    [UIView commitAnimations];

}


UI:改变UIView背景颜色

标签:

原文地址:http://blog.csdn.net/ytuzhangziyao/article/details/42171401

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