更改导航栏按钮的颜色

changing colour of a Navigation Bar Button

我有一种方法可以改变图像的颜色。我在我的应用程序菜单中快速使用这种颜色图标,而不必每次都创建正确颜色的图像。

/// Tint an image with a selected colour.
///
/// - Parameters:
///    - image: The image you wish to colour
///    - imageView: The imageView containing the image
///    - colour: Colour you wish to tint image with.  Set as nil if you dont want to change it or im image is multicoloured.
func tint(icon image:UIImage, for imageView:UIImageView,  with colour:UIColor?) {

    if colour != nil {
        let template = image.withRenderingMode(.alwaysTemplate)
        imageView.tintColor = colour!
        imageView.image = template

    } else {
        imageView.image = image
    }

}

这在大多数情况下都能正常工作。但是我的问题是试图在导航栏中设置图像的颜色它根本不起作用并且图像保持其原始颜色。

我正在尝试以下方法

    let dashboardButton = UIButton(type: .custom)

    let dashboardButtonImage = UIImage(named: "example image name")

dashboardButton.setImage(dashboardButtonImage.imageResize(sizeChange: CGSize(width: 20, height: 20)), for: .normal)

    style.tint(icon: dashboardButtonImage, for: dashboardButton.imageView!, with: .red)

    dashboardButton.contentHorizontalAlignment = .fill
    dashboardButton.contentVerticalAlignment = .fill
    dashboardButton.imageView?.contentMode = .scaleAspectFit

    dashboardButton.frame = CGRect(x: 0, y: 0, width: 30, height: 30)

    dashboardButton.addTarget(self, action: #selector(ExampleViewController.goToDashboard), for: .touchUpInside)
    let dashboardItem = UIBarButtonItem(customView: dashboardButton)

    self.navigationItem.setRightBarButtonItems([dashboardItem], animated: false)

我可以很容易地通过制作正确颜色的图形来解决这个问题。但是,当客户决定要更改颜色时,我想将这些颜色更改保留在应用程序中。我想知道为什么我不能让它在导航栏中工作?有解决办法吗?

像这样直接访问图像视图的按钮图像 属性 总是有问题:

buttom.imageView.image = testImage

你可以试试这个对我有用:

func tint(icon image: UIImage, for button: UIButton, with colour: UIColor?) {
    if colour != nil {
        let template = image.withRenderingMode(.alwaysTemplate)
        button.setImage(template, for: .normal)
        button.imageView!.tintColor = .red
    } else {
        button.setImage(image, for: .normal)
    }
}

使用你传递的按钮而不是图像视图,函数使用 UIButton 的 setImage 方法来设置它。这似乎解决了这个问题。