
I need to present a view like this, without full-screen, like a popover or popup. I don't know if this presentation style has a name. Does someone know a way to do this? Or someone can tell me where I can found this? Thanks to all.

I need to present a view like this, without full-screen, like a popover or popup. I don't know if this presentation style has a name. Does someone know a way to do this? Or someone can tell me where I can found this? Thanks to all.
 
    
     
    
    Open translucent modal controller :
class ViewController: UIViewController {
   func openTranslucentController() -> ModalController {
        let storyboard: UIStoryboard = UIStoryboard(name: "Controller", bundle: nil)
        let controller: ModalController = storyboard.instantiateViewController(withIdentifier: "ControllerIdentifier") as! ModalController
        controller.view.backgroundColor = UIColor.black.withAlphaComponent(0.5)
        controller.modalPresentationStyle = .overCurrentContext
        self.present(controller, animated: true, completion: nil)
    }
}
Now, you can design it in the required way.
