Skip to content

Instantly share code, notes, and snippets.

@trilliwon
Created January 3, 2019 00:26
Show Gist options
  • Save trilliwon/05cbd206b3ad3144d4a3b39e8d59561c to your computer and use it in GitHub Desktop.
Save trilliwon/05cbd206b3ad3144d4a3b39e8d59561c to your computer and use it in GitHub Desktop.
tinted UIImage
let origImage = UIImage(named: "icon")
let tintedImage = origImage?.withRenderingMode(.alwaysTemplate)
button.setImage(tintedImage, for: .normal)
button.tintColor = .red
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment