<!--
{
  "availability" : [
    "iOS: 13.0.0 -",
    "iPadOS: 13.0.0 -",
    "macCatalyst: 13.1.0 -",
    "tvOS: 13.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 6.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "UIKit",
  "identifier" : "/documentation/UIKit/UIImage/withTintColor(_:renderingMode:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "UIKit"
    ],
    "preciseIdentifier" : "c:objc(cs)UIImage(im)imageWithTintColor:renderingMode:"
  },
  "title" : "withTintColor(_:renderingMode:)"
}
-->

# withTintColor(_:renderingMode:)

Returns a new version of the image with a tint color that uses the specified rendering mode.

```
func withTintColor(_ color: UIColor, renderingMode: UIImage.RenderingMode) -> UIImage
```

## Parameters

`color`

The tint color to apply to the image.

`renderingMode`

The rendering mode to assign to the returned image.

## Return Value

A new version of the image that incorporates the specified tint color.

## Discussion

For bitmap images, this method draws the background tint color followed by the image contents using the <doc://com.apple.documentation/documentation/CoreGraphics/CGBlendMode/destinationIn> mode. For symbol images, this method returns an image that always uses the specified tint color.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)