如何得到ios7系統中的藍色

最簡潔的辦法,直接使用下列代碼:html

[UIColor colorWithRed:0.0 green:122.0/255.0 blue:1.0 alpha:1.0]git

最完全的辦法:github

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];

 
效果圖
相關文章
相關標籤/搜索