Alpha 元件的顏色
你可以使用 init(red:_,green:_,blue:_,alpha:_)
初始化程式將不透明度設定為某個 UIColor
而不建立新的 UIColor
。
迅速
let colorWithAlpha = UIColor.redColor().colorWithAlphaComponent(0.1)
Swift 3
//In Swift Latest Version
_ colorWithAlpha = UIColor.red.withAlphaComponent(0.1)
Objective-C
UIColor * colorWithAlpha = [[UIColor redColor] colorWithAlphaComponent:0.1];