Архитектурный шаблон "Мрак в моделях" на нескольких языках и платформах
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
313B

  1. import UIKit
  2. // MARK: - Ядро-VC
  3. extension Main {
  4. class Core: UIViewController {
  5. var buttons = [UIButton]()
  6. override func viewDidLoad() {
  7. super.viewDidLoad()
  8. view.backgroundColor = .white
  9. Main.Section16Buttons.setupCore(self)
  10. Main.SectionGrid.setupCore(self)
  11. }
  12. }
  13. }