Change colour of dark grey highlight when holding down custom UIButton?

我是研究僧i 提交于 2019-12-02 20:11:25

You said you set a custom image for the UIControlStateHighlighted state. This should disable the default behaviour.

If you still have problems you can disable this effect by setting the adjustsImageWhenHighlighted property to NO and use whatever custom effect you want.

If adjustsImageWhenHighlighted = NO is not working, set Button-Type to Custom (IB or programmatically).

Default Button-Type: System, changes behavior of highlighted button.

Swift 3:

myButton.adjustsImageWhenHighlighted = false

I was having a similar issue with a custom UIButton when the button was highlighting in grey every time it was pressed. I solved that problem by subclassing UIButton and in the implementation I overrode a single method, (void)setHighlighted: method and kept it empty:

- (void)setHighlighted:(BOOL)highlighted
{
   // Leave empty to prevent super from doing whatever
   // that it is doing to show the grey highlight.
}

That stopped any type of highlighting as I was not doing anything in the method. It's a better approach if all that you're trying to do is remove any highlighting effect.

So in your code, create a subclass of UIButton, override the setHighlighted method, and then make your custom button a subclass of this custom class.

You can write a custom button that does it

class ActionButton: UIButton {

  var originalBackgroundColor: UIColor!

  override var backgroundColor: UIColor? {
    didSet {
      if originalBackgroundColor == nil {
        originalBackgroundColor = backgroundColor
      }
    }
  }

  override var isHighlighted: Bool {
    didSet {
      guard let originalBackgroundColor = originalBackgroundColor else {
        return
      }

      backgroundColor = isHighlighted ? originalBackgroundColor.darken() : originalBackgroundColor
    }
  }
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!