Slide 50
Slide 50 text
func predeterminedValueDescriptionForNumber(_ number:
Int) -> String? {
switch self.characteristicType {
case HMCharacteristicTypePowerState,
HMCharacteristicTypeInputEvent,
HMCharacteristicTypeOutputState:
if Bool(number as NSNumber) {
return NSLocalizedString("On",
comment: "On")
}
else {
return NSLocalizedString("Off",
comment: "Off")
}
case HMCharacteristicTypeOutletInUse,
HMCharacteristicTypeMotionDetected,
HMCharacteristicTypeAdminOnlyAccess,
HMCharacteristicTypeAudioFeedback,
HMCharacteristicTypeObstructionDetected: