I'm presenting a mostly transparent ViewController over another one right now, but it disables interaction with the ViewController underneath. Here is the code I am using as of now:
topController.modalPresentationStyle = UIModalPresentationStyle.overCurrentContext
bottomController.modalPresentationStyle = UIModalPresentationStyle.currentContext
bottomController.present(topController, animated: true, completion: nil)
How do I partially present the top controller over the bottom controller while still allowing the bottom controller to be interacted with?