Guest User

Untitled

a guest
Apr 21st, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. @IBDesignable
  2. class ColoredImageView: UIImageView {
  3.  
  4. @IBInspectable
  5. var imageColor: UIColor {
  6. set {
  7. tintColor = newValue
  8. let templateImage = image?.withRenderingMode(.alwaysTemplate)
  9. image = templateImage
  10. }
  11. get { return tintColor }
  12. }
  13.  
  14. }
Add Comment
Please, Sign In to add comment