// // CertificationTestViewController.swift // Learn Genie // // Created by Suraj Kumar Mandal on 13/09/21. // import UIKit import SideMenu class CertificationTestViewController: UIViewController { @IBOutlet var navigationBar: UINavigationBar! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. } override func viewWillAppear(_ animated: Bool) { navigationBar.topItem?.title = Helper.translateText(inputText: "Certification Test") } /* // MARK: - Navigation // In a storyboard-based application, you will often want to do a little preparation before navigation override func prepare(for segue: UIStoryboardSegue, sender: Any?) { // Get the new view controller using segue.destination. // Pass the selected object to the new view controller. } */ @IBAction func menuNavAction(_ sender: Any) { let menu = storyboard!.instantiateViewController(withIdentifier: "SideMenuNavigationController") as! SideMenuNavigationController present(menu, animated: true, completion: nil) } }