Custom executable actions
Action UI
func XXXDescription() -> String
func XXXAction()
func XXXRestart() -> Bool@objcMembers class Configuration: APLConfiguration {
func freshInstallDescription() -> String {
return "Resets application to fresh install state"
}
func freshInstallAction() {
let defs = UserDefaults.standard
let dict = defs.dictionaryRepresentation()
for key in dict.keys {
defs.removeObject(forKey: key)
}
defs.synchronize()
}
func freshInstallRestart() -> Bool {
return false
}
...Last updated
