Created
January 3, 2019 00:26
-
-
Save trilliwon/05cbd206b3ad3144d4a3b39e8d59561c to your computer and use it in GitHub Desktop.
tinted UIImage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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