我需要在导航栏中显示我的应用程序图标。为此,我将其添加为右键按钮项。我不希望它是可单击的,我只需要那里的图标,所以我将其设置为禁用。问题在于该图标显示为灰色,而不是绿色。有没有办法禁用此按钮,但又保持其原始颜色?

最佳答案

试试这个:

let barButtonItem = UIBarButtonItem(title: "Click", style: .Done, target: self, action: #selector(didClick(_:)))
barButtonItem.setTitleTextAttributes([NSForegroundColorAttributeName: UIColor.blueColor()], forState: .Normal)
barButtonItem.setTitleTextAttributes([NSForegroundColorAttributeName: UIColor.blueColor()], forState: .Disabled)
barButtonItem.enabled = false
navigationItem.setRightBarButtonItem(barButtonItem, animated: false)

关于ios - 在iOS中更改禁用的条形按钮项目的颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35736754/

10-09 09:15