OS7Colors是UIColor的一個簡單類,它提供了一些蘋果在iOS 7中使用的一些標準顏色,方便在開發過程當中使用。
用法
將iOS7Colors整合到工程中最簡單的方法是使用CocoaPods。將下行添加到Podfile中:
pod 'iOS7Colors', '~> 2.0.0'
手動添加的方法也很簡單。將UIColor+iOS7Colors.h以及UIColor+iOS7Colors.m文件添加到工程中,而後導入頭文件便可。
#import "UIColor+iOS7Colors.h"
UILabel *label = [UILabel alloc] initWithFrame:CGRectZero];
label.textColor = [UIColor iOS7redColor];