lnd-demo-app/wallet/Utils/Extensions/UIImage.swift

18 lines
294 B
Swift
Raw Normal View History

2023-06-08 06:36:06 +00:00
//
// UIImageView.swift
// wallet
//
// Created by Jason on 8/27/20.
// Copyright © 2020 Jason. All rights reserved.
//
import UIKit
extension UIImage {
func tint(_ color: UIColor) -> UIImage {
return withRenderingMode(.alwaysTemplate).withTintColor(color)
}
}