iOS7Colors 是 UIColor 的一个简单分类,它为您提供在 iOS 7 中使用的部分标准颜色。
通过使用 CocoaPods 可将 iOS7Colors 集成得最为简单。只需将其添加到 Podfile 中
pod 'iOS7Colors', '~> 2.0.0'
使用方法非常简单。如果您不在使用 CocoaPods,只需将 UIColor+iOS7Colors.h
和 UIColor+iOS7Colors.m
包含到您的项目中,并导入您需要的颜色对应的头文件。
#import "UIColor+iOS7Colors.h"
UILabel *label = [UILabel alloc] initWithFrame:CGRectZero];
label.textColor = [UIColor iOS7redColor];
颜色值来自 Louie Mantia 的 iOS 7 Color Swatches
iOS7Colors 允许在 MIT 许可证下使用