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