If anyone is interested I solved this with NotificationCenter
In BaseViewController viewDidLoad I have
NotificationCenter.default.addObserver(self, selector: #selector(openMenu), name: Notification.Name(rawValue: "openMenu"), object: nil)
In my main vc navbutton I have
NotificationCenter.default.post(name: Notification.Name(rawValue: "openMenu"), object: nil)