Does UIButton become disabled when its alpha is set to 0.0?

前端 未结 3 1181
天命终不由人
天命终不由人 2020-12-07 00:51

I have a few buttons in my app whose alpha is currently set to zero. These buttons are completely non-responsive, but as soon as I increase their alpha, they begin to respon

3条回答
  •  一向
    一向 (楼主)
    2020-12-07 00:55

    As per Apple's documentation for UIView's hitTest:withEvent: method:

    This method ignores view objects that are hidden, that have disabled user interactions, or have an alpha level less than 0.01.

    So any UIView that has alpha lower than 0.01 will be ignored by the touch events processing system, i.e. will not receive touch.

提交回复
热议问题