天天看点

UIButton无法响应点击事件问题

问题描述:

当设置UIButton的backgroundColor = [UIColor clearColor]时,如果此时按钮上仅有一张图片并且按钮图片较小,如下图

UIButton无法响应点击事件问题

此时点击按钮除图片之外的位置将不会触发按钮事件,解决办法为将UIButton的backgroundColor = [[UIColor whiteColor] colorWithAlphaComponent:0.001]

具体原因不详

继续阅读