AppStateController.swift 508 B

12345678910111213141516171819
  1. // LoopFollow
  2. // AppStateController.swift
  3. // Created by Jose Paredes on 2020-07-18.
  4. import Foundation
  5. // App Sate used used to changes to the app view controllers (Settings, for example)
  6. // Recommended way of utilizing is when viewVillAppear(..) is called,
  7. // look in the app state to see if further action must be t
  8. // Setup App States to comminicate between views
  9. class AppStateController {
  10. // add app states & methods here
  11. // Chart Settings State
  12. var chartSettingsChanged: Bool = false
  13. }