18 lines
294 B
Swift
Raw Permalink Normal View History

2023-06-08 09:36:06 +03: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)
}
}