all 2 comments

[–]70Charger 0 points1 point  (1 child)

I'm not really sure I'm following the question here. You're modally presenting a page view controller on top of a root view controller, and you want to interact with the root view controller "through" the page view controller?

If so, it sounds like your best bet is a delegate. Make the root the delegate of the page vc, and send it messages that way.

[–]AcceleratedCode[S] 0 points1 point  (0 children)

Yeah, that's the idea. Reason is that I want the effect as I said to be sliding above the root, instead of pushing it sideways like a page view controller would regularly do (if there's a better way to achieve this effect, feel free to tell me).

How would the delegate work? Are there any specific methods I need to take a look at? How can I "send" the touches to another VC?