Is it possible to interact with a presenting view controller whilst a model view controller is being presented?
------------
| |
| VC1 |
| |
| |
| |
| |
|------------|
| VC2 |
| |
------------
In the illustration above VC1 is the presentingViewController
and VC2 is the presentedViewController
.
The user experience I am trying to achieve is that the user can interact with VC1 and VC2. At the moment, touches are not passed through to VC1 when VC2 is presented.