I am very new to swift and trying to create an extension of UIColor class as
extension UIColor{ func getCustomBlueColor() -> UIColor { retur
You just need to change your statement like,
btnShare.setTitleColor(UIColor().getCustomBlueColor(), forState:.Normal)
More detailed explanation is here.