0
Good morning, I have a problem using Popover, I need to do a step by step registration using Popover in the register, but when I try to close one Popover and open another, I’m not getting it closes the Pover I’m trying to open, follows below the code.
let storyboard : UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
let vc = storyboard.instantiateViewController(withIdentifier: "PopOverCadastroNome")
vc.modalPresentationStyle = .popover
present(vc, animated: true, completion:{()->Void in
self.dismiss(animated: true, completion: nil)
})