Keys

enum Keys : String

This is an enumeration that will list the prefs keys for us.

  • The timers, stored as a Dictionary (key is the ID).

    Declaration

    Swift

    case timerModel
  • If this is true, then going into the running timer screen starts the timer immediately. If false, then it starts as paused.

    Declaration

    Swift

    case startTimerImmediately
  • If this is true, the running timer toolbar is displayed at the top of the screen.

    Declaration

    Swift

    case displayToolbar
  • If this is true, then the toolbar (if in displayToolbar mode) will fade, after a few seconds of inactivity.

    Declaration

    Swift

    case autoHideToolbar
  • If this is true, then tapping on a timer will immediately go to its editor.

    Declaration

    Swift

    case oneTapEditing
  • These are all the keys, in an Array of String.

    Declaration

    Swift

    static var allKeys: [String] { get }