NACCPersistentPrefs
class NACCPersistentPrefs : RVS_PersistentPrefs
This is the subclass of the preferences type that will provide our persistent app settings.
-
This is an enumeration that will list the prefs keys for us.
See moreDeclaration
Swift
enum Keys : String
-
This is a list of the keys for our prefs. We should use the enum for the keys (rawValue).
Declaration
Swift
override var keys: [String] { get }
-
This stores the cleandate, as an instance of Date
Declaration
Swift
var cleanDate: Date { get set }
-
This stores the last selected tab index (0-based).
Declaration
Swift
var lastSelectedTabIndex: Int { get set }