I have a base view controller VC1 and another view controller VC2 that is modally presented over full screen (over VC1)
VC2 is semi transparent and I would like to forward all touch events from VC2 to VC1 when the user taps or scrolls. (VC1 has a few buttons and a scrollview)
Should I use some kind of custom container? How can I present VC2 to cover the screen and yet forward all touches to VC1? Is modal the right answer?
I have tried storing a reference to VC1 as a variable in VC2 and passing events to VC1 via touchesbegan but that has not worked.
Thank you.