Getting or setting the hit area of UIButtonTypeInfoLight
问题 So it seems that the tappable area of an UIButton with the type of UIButtonTypeInfoLight is much larger than its frame. Because of this, I can not put a button right next to it, trying to tap it will tap the info button instead. _infoButton.frame = CGRectMake(0, 0, 40, height); _searchButton.frame = CGRectMake(CGRectGetMaxX(_infoButton.frame), 0, 40, height); Does anyone have any insite on how to get the tappable area of the button? Edit:having the button next the info button it is not my