CertificationTestViewController.swift 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // CertificationTestViewController.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 13/09/21.
  6. //
  7. import UIKit
  8. import SideMenu
  9. class CertificationTestViewController: UIViewController {
  10. @IBOutlet var navigationBar: UINavigationBar!
  11. override func viewDidLoad() {
  12. super.viewDidLoad()
  13. // Do any additional setup after loading the view.
  14. }
  15. override func viewWillAppear(_ animated: Bool) {
  16. navigationBar.topItem?.title = Helper.translateText(inputText: "Certification Test")
  17. }
  18. /*
  19. // MARK: - Navigation
  20. // In a storyboard-based application, you will often want to do a little preparation before navigation
  21. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  22. // Get the new view controller using segue.destination.
  23. // Pass the selected object to the new view controller.
  24. }
  25. */
  26. @IBAction func menuNavAction(_ sender: Any) {
  27. let menu = storyboard!.instantiateViewController(withIdentifier: "SideMenuNavigationController") as! SideMenuNavigationController
  28. present(menu, animated: true, completion: nil)
  29. }
  30. }