VMF_Persistent_Prefs
class VMF_Persistent_Prefs : RVS_PersistentPrefs
This stores our various parameters.
-
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 saves our meeting attendance, as a list of meeting IDs.
Declaration
Swift
var attendance: [Int] { get set }
-
If we want to exclude Service meetings from the displayed results, this Boolean is true.
Declaration
Swift
var excludeServiceMeetings: Bool { get set }