1234567891011121314151617181920 |
- //
- // AppNavigation.swift
- // Learn Genie
- //
- // Created by Suraj Kumar Mandal on 24/09/21.
- //
- import UIKit
- import Foundation
- class AppNavigation {
-
- // static func navToLanguageVC() {
- // DispatchQueue.main.async {
- // let selectLanguageVC = self.storyboard?.instantiateViewController(withIdentifier:"SelectLanguageViewController" ) as! SelectLanguageViewController
- // self.navigationController?.pushViewController(selectLanguageVC, animated: true)
- // }
- // }
-
- }
|