I want not to change the backgroundColor of an UIImage, but rather to change the color of the whole image.
Because I have got standard forms which I can move fr
You can also do this in swift with the following code:
// language: Swift let tintedImage = UIImageView(image: UIImage(named:"whatever")!.imageWithRenderingMode(UIImageRenderingMode.AlwaysTemplate)) tintedImage.tintColor = UIColor.redColor()