Blame view
App/listCtruong/VCRootListCtruong.swift
401 Bytes
d774f0637
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import UIKit import Foundation class VCRootListCtruong: VCContainerFullScreen { static func openController(_ viewController: UIViewController) { let vcOpen = VCRootListCtruong() viewController.present(vcOpen, animated: true, completion: nil) } override func viewDidLoad() { super.viewDidLoad() changeCurrentController(VCListCtruong.getInstance()) } } |