[Swift通天遁地]5、高級擴展-(9)顏色、設備、UserDefaults、URL等擴展方法

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公衆號:山青詠芝(shanqingyongzhi)
➤博客園地址:山青詠芝(https://www.cnblogs.com/strengthen/
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:http://www.javashuo.com/article/p-twhnhoep-kz.html 
➤若是連接不是山青詠芝的博客園地址,則多是爬取做者的文章。
➤原文已修改更新!強烈建議點擊原文地址閱讀!支持做者!支持原創!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★html

目錄:[Swift]通天遁地Swiftios

本文將演示顏色、設備、UserDefaults、URL等擴展方法。git

首先確保在項目中已經安裝了所需的第三方庫。github

點擊【Podfile】,查看安裝配置文件。web

1 platform :ios, '12.0'
2 use_frameworks!
3 
4 target 'DemoApp' do
5     source 'https://github.com/CocoaPods/Specs.git'
6     pod 'EZSwiftExtensions'
7 end

根據配置文件中的相關配置,安裝第三方庫。ajax

而後點擊打開【DemoApp.xcworkspace】項目文件。swift

在項目導航區,打開視圖控制器的代碼文件【ViewController.swift】api

  1 import UIKit
  2 //在當前的類文件中,引入已經安裝的第三方類庫
  3 import EZSwiftExtensions
  4 
  5 class ViewController: UIViewController {
  6 
  7     override func viewDidLoad() {
  8         super.viewDidLoad()
  9         // Do any additional setup after loading the view, typically from a nib.
 10         //顏色的擴展
 11         uiColorExtensions()
 12         //設備類型的擴展方法
 13         uiDeviceExtensions()
 14         //輕量級本地數據存儲類型的擴展
 15         userDefaultsExtensions()
 16         //URL網址類型的擴展方法
 17         urLExtensions()
 18     }
 19     
 20     //添加一個方法,用於顏色的擴展
 21     func uiColorExtensions()
 22     {
 23         //第三方類庫對顏色類的初始化方法進行了優化,
 24         //使開發者能夠根據紅綠藍三原色和透明度等信息,建立所需的顏色。
 25         _ = UIColor(r: 100, g: 100, b: 100)
 26         _  = UIColor(r: 100, g: 100, b: 100, a: 0.5)
 27         
 28         //一樣能夠經過初始化方法,建立不一樣透明度的灰階顏色
 29         _  = UIColor.init(gray: 100)
 30         _  = UIColor.init(gray: 100, alpha: 0.5)
 31         
 32         //初始化一個默認值爲洋紅的顏色對象
 33         let myColor5 = UIColor.magenta
 34         //經過對顏色類型擴展的屬性,
 35         //能夠快速獲取顏色對象的四個通道的值
 36         print("myColor5.redComponent:\(myColor5.redComponent)")
 37         print("myColor5.greenComponent:\(myColor5.greenComponent)")
 38         print("myColor5.blueComponent:\(myColor5.blueComponent)")
 39         print("myColor5.alpha:\(myColor5.alpha)")
 40         
 41         //經過初始化方法,能夠經過十六進制的字符串,建立所需的顏色,
 42         //而且制定顏色的不透明度。
 43         _  = UIColor(hexString: "0x233C64")
 44         _  = UIColor(hexString: "0x233C64", alpha: 0.6)
 45         //甚至能夠去掉前方的十六進制的標誌符號
 46         _  = UIColor(hexString: "233C64")
 47         //或者使用常見的#號標誌
 48         _  = UIColor(hexString: "#233C64")
 49         
 50         //經過顏色對象的隨機顏色的方法,能夠得到一個隨機的顏色
 51         _  = UIColor.randomColor()
 52     }
 53     
 54     //添加一個方法,設備類型的擴展方法
 55     func uiDeviceExtensions()
 56     {
 57         //經過設備類的擴展方法,
 58         //得到供應商的惟一標誌符
 59         print("UIDevice.idForVendor():\(String(describing: UIDevice.idForVendor()))")
 60         //得到並輸出設備的系統名稱
 61         print("UIDevice.systemName():\(UIDevice.systemName())")
 62         //得到並輸出設備的系統版本
 63         print("UIDevice.systemVersion():\(UIDevice.systemVersion())")
 64         //得到並輸出設備的名稱
 65         print("UIDevice.deviceName():\(UIDevice.deviceName())")
 66         //得到並輸出設備的型號
 67         print("UIDevice.deviceModel():\(UIDevice.deviceModel())")
 68         //得到並輸出設備的的型號是否可被獲取
 69         print("UIDevice.deviceModelReadable():\(UIDevice.deviceModelReadable())")
 70         //得到並輸出設備的語言
 71         print("UIDevice.deviceLanguage():\(UIDevice.deviceLanguage())")
 72         
 73         //檢測系統的版本號是否在12.0版本之上
 74         print("UIDevice.isSystemVersionOver(12.0):\(UIDevice.isSystemVersionOver("12.0"))")
 75     }
 76     
 77     //添加一個方法,針對輕量級本地數據存儲類型的擴展
 78     func userDefaultsExtensions()
 79     {
 80         //得到本地數據存儲對象
 81         let Defaults = UserDefaults.standard
 82         //像使用字典同樣,依次設置兩個鍵的值
 83         Defaults["userName"] = "Jerry"
 84         Defaults["age"] = 35
 85         
 86         //獲取本地存儲的值
 87         let userName = Defaults["userName"]
 88         let age = Defaults["age"]
 89         
 90         //在控制檯輸出相應的數據
 91         print("userName:\(String(describing: userName))")
 92         print("age:\(String(describing: age))")
 93     }
 94     
 95     //添加一個方法,針對URL網址類型的擴展方法
 96     func urLExtensions()
 97     {
 98         //初始化一個網址對象
 99         let url = URL(string: "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=facebook")
100         //經過擴展屬性,快速得到網址中的請求參數
101         if let queryParameters = url?.queryParameters
102         {
103             //經過鍵值查詢的方式,獲取並輸出參數的值
104             print("queryParameters[v]:\(String(describing: queryParameters["v"]))")
105             print("queryParameters[q]:\(String(describing: queryParameters["q"]))")
106             print("queryParameters[other]:\(String(describing: queryParameters["other"]))")
107         }
108     }
109 
110     override func didReceiveMemoryWarning() {
111         super.didReceiveMemoryWarning()
112         // Dispose of any resources that can be recreated.
113     }
114 }
相關文章
相關標籤/搜索