1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import UIKit
- import SideMenu
- class CertificationTestViewController: UIViewController {
- @IBOutlet var navigationBar: UINavigationBar!
-
- override func viewDidLoad() {
- super.viewDidLoad()
-
-
- }
-
- override func viewWillAppear(_ animated: Bool) {
- navigationBar.topItem?.title = Helper.translateText(inputText: "Certification Test")
- }
-
-
- @IBAction func menuNavAction(_ sender: Any) {
- let menu = storyboard!.instantiateViewController(withIdentifier: "SideMenuNavigationController") as! SideMenuNavigationController
- present(menu, animated: true, completion: nil)
- }
-
- }
|