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 core question (just an illustration of why it might be important). My question is about finding out the "hit area" for a button of these types.