Blame view
App/commons/VCRoot.swift
488 Bytes
d774f0637
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import UIKit import Foundation class VCRoot: VCContainerFullScreen { var id: String? static func openController(_ viewController: UIViewController) { let vcOpen = VCRoot() viewController.present(vcOpen, animated: true, completion: nil) } override func viewDidLoad() { super.viewDidLoad() changeCurrentController(VCInputId.getInstance()) //TODO: neu chua co id -> Ra cai nay // changeCurrentController(VCHome.getInstance()) } } |