I have a UIView
, and from inside the view I've attached a UIButton
to be aligned to the bottom of it.
Naturally I've set clipToBounds
to NO
, so that the button is visible.
The button is aligned beautifully (with constraints) but alas, it will not respond to taps (not even highlighted).
Is that even possible to do? or must it reside in the parent view in order to respond?
Thanks.