I want to go back to mainviewcontroller when I hit logout button, but it gives me:
fatal error: unexpectedly found nil while unwrapping an Optional value
navigationItem.leftBarButtonItem = UIBarButtonItem(title: "Logout", style: .plain, target: self, action: #selector(logOut))
func logOut(){
let mainViewController = MainViewController()
present(mainViewController, animated: true, completion: nil)
}