Color with Alpha component

suggest change

You can set the opacity to a certain UIColor without creating a new one using the init(red:_,green:_,blue:_,alpha:_) initializer.

Swift

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];

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents