HexColor - UIColors 定义工具


MIT
iOS
Swift

软件简介

HexColor 是使用 Swift 定义 UIColors,作为 HEX 值去定义。

最低要求: XCode 6.0 Beta 7

简单示例:

myLabel.textColor = 0xFFFFFF // Let there be white
myView.backgroundColor = 0x0f126f // Deep blue

// Yay, finally you can stop to use this crap:
// UIColor.colorWithRed(0x0f/255.0, green: 0x12/255.0, blue: 0x65/255.0, 1.0)