I’m working on an alarm app. I want the alarm to fire only on selected days array. But i am getting notification on every day. This is what I’ve done so far. for ind in 0…countNum { guard let fireDate = alarm.fireDate else { return } print(fireDate) let date = fireDate.addingTimeInterval((1.0*Double(ind)) * 60.0) print(date) letRead more