最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

關(guān)于iOS中的各種顏色設(shè)置總結(jié)大全(推薦)

 更新時間:2017年09月12日 11:03:31   作者:devilx  
這篇文章主要給大家介紹了關(guān)于iOS中顏色設(shè)置的相關(guān)資料,其中包括導(dǎo)航欄、狀態(tài)欄、Tabbar、Button、TextField、AttributedString和通用部分的顏色設(shè)置方法示例,對大家具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起看看吧。

前言

最近因為工作的原因,在做界面的時候,有時會忘記某種控件的顏色怎么設(shè)置,需要去網(wǎng)上進(jìn)行搜索,所以寫下這篇文章。

一方面是收藏起來自己查閱,一方面是分享給大家。目標(biāo)是有了這篇文章,不用再去搜索和顏色設(shè)置有關(guān)的內(nèi)容。 話不多說了,來一起看看詳細(xì)的介紹吧。

下面進(jìn)入正題

導(dǎo)航欄

/* 全局設(shè)置 */

// 標(biāo)題顏色
// 如果需要設(shè)置字體就在字典中加入 [UIFont fontWithName:@"Hiragino Sans GB" size:14]
[[UINavigationBar appearance] setTitleTextAttributes:
  @{NSForegroundColorAttributeName:[UIColor whiteColor]}];

// 導(dǎo)航欄背景顏色
[[UINavigationBar appearance] setBarTintColor:[UIColor whiteColor]];

// 導(dǎo)航欄返回按鈕、自定義UIBarButtonItem顏色
[[UINavigationBar appearance] setTintColor:[UIColor blackColor]];
/* 單獨設(shè)置 */

// 導(dǎo)航欄標(biāo)題顏色
self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName:[UIColor whiteColor]};

// 導(dǎo)航欄背景顏色
self.navigationController.navigationBar.barTintColor = [UIColor whiteColor];

// 導(dǎo)航欄返回按鈕、自定義UIBarButtonItem顏色
self.navigationController.navigationBar.tintColor = [UIColor blackColor];

狀態(tài)欄

進(jìn)入 Targets -> General -> Status Bar Style,可以設(shè)置 黑色(默認(rèn)) 和 白色。


如果需要精確控制不同頁面的顏色,還是需要代碼設(shè)置。

首先給 info.plist 加上這句話


// View controller-based status bar appearance
// 加入這個參數(shù),我們前面方法的設(shè)置就會失效
// 接下來就可以使用代碼進(jìn)行設(shè)置了

/* 全局設(shè)置 */

[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;

/* 單獨設(shè)置 */

- (UIStatusBarStyle)preferredStatusBarStyle {
 return UIStatusBarStyleLightContent;
}

// 細(xì)心的朋友讀者可能會疑問,為什么這次不能用
self.navigationController.preferredStatusBarStyle = UIStatusBarStyleLightContent;


答案很簡單,仔細(xì)看報錯就知道這是一個 readonly 的屬性,所有我們直接重寫他的 set 方法。

TabBar

/* 全局設(shè)置 */
// TabBar背景顏色
[UITabBar appearance].barTintColor = [UIColor whiteColor];

/* 單獨設(shè)置 */
// TabBar背景顏色
self.tabBarController.tabBar.barTintColor = [UIColor whiteColor];

TabBar圖標(biāo)顏色

不用寫亂七八糟的代碼,直接到 Assets.xcassets 里把圖片的屬性 Render 設(shè)置為 Original Image 就可以讓顏色按照圖片的來,而不會選中變藍(lán)了。

Button

// 字體顏色
// 有人可能會誤用這兩個錯誤的方法
// 錯誤1:[button.titleLabel setTextColor:[UIColorblackColor]];
// 錯誤2:button.titleLabel.textColor = [UIColor redColor];
// 正確
[button setTitleColor:[UIColor blackColor]
 forState:UIControlStateNormal];

// 邊框顏色
// 默認(rèn)沒有邊框,第一行是設(shè)置線條,第二行重點在于layer的顏色要用CGColor
button.layer.borderWidth = 2.0;
button.layer.borderColor = [UIColor blackColor].CGColor;

TextField

// placeholder顏色設(shè)置
textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"placeHoldtext" attributes:@{NSForegroundColorAttributeName: [UIColor redColor]}]; 

AttributedString

// 初始化NSMutableAttributedString
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"Using NSAttributed String"];
// 顏色設(shè)置
[str addAttribute:NSForegroundColorAttributeName
 value:[UIColor blueColor]
 range:NSMakeRange(0,5)];
[str addAttribute:NSForegroundColorAttributeName
 value:[UIColor redColor]
 range:NSMakeRange(6,12)];
[str addAttribute:NSForegroundColorAttributeName
 value:[UIColor greenColor]
 range:NSMakeRange(19,6)];
// 字體設(shè)置
[str addAttribute:NSFontAttributeName
 value:[UIFont fontWithName:@"Arial-BoldItalicMT" size:30.0]
 range:NSMakeRange(0, 5)];
[str addAttribute:NSFontAttributeName
 value:[UIFont fontWithName:@"HelveticaNeue-Bold" size:30.0]
 range:NSMakeRange(6, 12)];
[str addAttribute:NSFontAttributeName
 value:[UIFont fontWithName:@"Courier-BoldOblique" size:30.0]
 range:NSMakeRange(19, 6)];
// 把AttributedString賦值給Label
attrLabel.attributedText = str;

通用部分

// 字體顏色 適用于Label、TextField、TextView等
label.textColor = [UIColor whiteColor];
textField.textColor = [UIColor yellowColor];
textView.textColor = [UIColor yellowColor];

// 背景顏色 基本都使用
someView.backgroundColor = [UIColor whiteColor];

工具

系統(tǒng)自帶的測色工具,位置在 應(yīng)用程序 -> 實用工具( Launchpad 里叫其他) -> 數(shù)碼測色計


使用方法:

打開后指向你想測色的地方即可顯示他的 RGB 色,以這個 Switch 舉個例子。

我們設(shè)置完rgb色后和你想要的略有差別。這里提供一個解決辦法。設(shè)置顏色的時候,點擊右邊的小齒輪,選擇 sRGB。

幾種常用的列舉的差不多了。不完整的地方大家可以提出來,我會對這個文章進(jìn)行更新。

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,如果有疑問大家可以留言交流,謝謝大家對腳本之家的支持。

相關(guān)文章

最新評論

江达县| 巴楚县| 星子县| 华宁县| 鄯善县| 轮台县| 长春市| 留坝县| 上虞市| 丰都县| 三江| 汤阴县| 墨脱县| 象州县| 南和县| 怀集县| 镇坪县| 丰原市| 渑池县| 铅山县| 巴林右旗| 屏山县| 宣汉县| 崇信县| 霍城县| 林口县| 康乐县| 清流县| 长汀县| 页游| 休宁县| 揭西县| 马龙县| 宾川县| 宣城市| 新巴尔虎左旗| 普格县| 都昌县| 法库县| 峨眉山市| 绥中县|