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

随机颜色文件 用的时候直接推进去好方便

时间:2014-10-31 15:46:56      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:io   color   ar   sp   文件   div   on   bs   ui   

#import <UIKit/UIKit.h>

@interface UIColor (RandomColor)
//随机颜色
+ (UIColor *)randomColor;
@end


#import "UIColor+RandomColor.h"

@implementation UIColor (RandomColor)

+ (UIColor *)randomColor {
    return [self colorWithRed:arc4random() % 256 / 255.0 green:arc4random() % 256 / 255.0 blue:arc4random() % 256 / 255.0 alpha:1.0];
}


@end


随机颜色文件 用的时候直接推进去好方便

标签:io   color   ar   sp   文件   div   on   bs   ui   

原文地址:http://blog.csdn.net/snn5love11314/article/details/40654187

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