lnd-demo-app/wallet/Utils/Extensions/UIImage.swift
2023-06-08 09:36:06 +03:00

18 lines
294 B
Swift

//
// 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)
}
}