Архитектурный шаблон "Мрак в моделях" на нескольких языках и платформах
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.

Main.VC.swift 248B

1 year ago
123456789101112131415
  1. import UIKit
  2. extension Main {
  3. class VC: UIViewController {
  4. var buttons = [UIButton]()
  5. override func viewDidLoad() {
  6. super.viewDidLoad()
  7. view.backgroundColor = .white
  8. Main.Section16Buttons.setupCore(self)
  9. }
  10. }
  11. }