The scenario is like,
I have one UIButton
in one UIView
.
So UIView
is parent view
and UIButton
is child view.
Now,
- If I set user interaction false for parent view then can I click
UIButton
? - If I am not able to touch
UIButton
then whyUIButton
is not touchable?
Can you explain how UIButton
will know it's parent view's user interaction is false?
Thanks,