I'm using a custom UIPresentationController subclass to manage the presentation of a UIViewController. I'm overriding - (CGRect)frameOfPresentedViewInContainerView
to provide a frame that is inset from the bounds of the containerView.
Now, after some user action on the presentedViewController, I would like to change the frame of the presentedViewController. My question is: Is there a 'natural' way to do this??
How can I adjust the frame of a presentedViewController after it has been presented?