1. 程式人生 > >隨機顏色文件 用的時候直接推進去好方便

隨機顏色文件 用的時候直接推進去好方便

tracking ng- ati content col and gree dsm 隨機

#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


隨機顏色文件 用的時候直接推進去好方便