UIButton not responding to touches?
January 23rd, 2012I’ve been developing for over 3 years now, and sometimes this will still get me. Perhaps posting a blog will get this out of my system forever. Anyway, the scenario is you create a UIButton, you can see it, but you can’t touch it (it does not highlight). Here are 2 things to try: Make sure the UIButton is not blocked by another view. If your UIButton is behind another UIView (even if it’s transparent), it may be blocking touches as well. Either move it forward in your nib hierarchy or call [containerView bringSubviewToFront:m.







