我正在試圖製作一個字典數組來組合一個字符串到UIColor。所以像這樣我的所有顏色(很多顏色)都會很容易管理。我想喜歡稱:品紅,然後,引擎蓋下,具有的UIColor在RGB字符串到UIColor的字典數組
我都試過,但它拋出一個錯誤:
let gColor: [String]:[UIColor] =
["magenta"]:[UIColor(red: 0, green: 0, blue: 0, alpha: 1)]
// and like 100 colors are stored here , but isn't working when i call them
您需要使用普通的字典 'VAR gColor:[字符串:的UIColor]' –