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

22 lines
404B

  1. import UIKit
  2. // MARK: - Протоколы
  3. protocol MainSection16Buttons { }
  4. // MARK: - Реализация
  5. extension Main {
  6. enum Section16Buttons {
  7. static func setupCore(_ core: Main.Core) {
  8. // Создаём 16 кнопок.
  9. for i in 0..<16 {
  10. let btn = UIButton()
  11. btn.tag = i
  12. core.view.addSubview(btn)
  13. core.buttons.append(btn)
  14. }
  15. }
  16. }
  17. }