Blame view
App/createNew/VCRootCreateNew.swift
475 Bytes
d774f0637
|
1 2 3 4 5 |
import UIKit import Foundation class VCRootCreateNew: VCContainerFullScreen { var tenCty: String?, tenCtruong: String? |
1341bf603
|
6 |
var mucChups: [ShootItem]? |
d774f0637
|
7 8 9 10 11 12 13 14 15 16 |
static func openController(_ viewController: UIViewController) { let vcOpen = VCRootCreateNew() viewController.present(vcOpen, animated: true, completion: nil) } override func viewDidLoad() { super.viewDidLoad() changeCurrentController(VCNhapTenCty.getInstance()) } |
1341bf603
|
17 |
|
d774f0637
|
18 |
} |