亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS中各種顏色設置的示例分析

發布時間:2021-07-30 11:54:48 來源:億速云 閱讀:168 作者:小新 欄目:移動開發

這篇文章主要介紹iOS中各種顏色設置的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

導航欄

/* 全局設置 */

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

// 導航欄背景顏色
[[UINavigationBar appearance] setBarTintColor:[UIColor whiteColor]];

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

// 導航欄標題顏色
self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName:[UIColor whiteColor]};

// 導航欄背景顏色
self.navigationController.navigationBar.barTintColor = [UIColor whiteColor];

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

狀態欄

進入 Targets -> General -> Status Bar Style,可以設置 黑色(默認) 和 白色。

iOS中各種顏色設置的示例分析

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

首先給 info.plist 加上這句話

iOS中各種顏色設置的示例分析

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

/* 全局設置 */

[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;

/* 單獨設置 */

- (UIStatusBarStyle)preferredStatusBarStyle {
 return UIStatusBarStyleLightContent;
}

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

iOS中各種顏色設置的示例分析

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

TabBar

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

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

TabBar圖標顏色

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

iOS中各種顏色設置的示例分析

Button

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

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

TextField

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

AttributedString

// 初始化NSMutableAttributedString
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"Using NSAttributed String"];
// 顏色設置
[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)];
// 字體設置
[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];

工具

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

iOS中各種顏色設置的示例分析

使用方法:

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

iOS中各種顏色設置的示例分析

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

iOS中各種顏色設置的示例分析

以上是“iOS中各種顏色設置的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

ios
AI

隆尧县| 嘉荫县| 都江堰市| 诸城市| 无棣县| 方山县| 鄂伦春自治旗| 五台县| 精河县| 陆良县| 福清市| 两当县| 扎鲁特旗| 寻甸| 海宁市| 揭东县| 左贡县| 高安市| 扶绥县| 邵阳县| 哈密市| 长阳| 元江| 紫云| 望谟县| 崇州市| 宾川县| 乌鲁木齐县| 缙云县| 永泰县| 江孜县| 繁昌县| 普兰县| 杭锦旗| 台江县| 北辰区| 顺昌县| 自贡市| 崇信县| 准格尔旗| 永福县|