FIFI

Does the iPhone alarm ring on silent? What the switch and Focus actually do

By Fifi · · 4 min read

Short answer: Apple's built-in Clock alarm rings even when your iPhone is on silent, and it rings through Focus and Do Not Disturb. That has been true for a long time and it is deliberate — Apple treats an alarm as a promise, and a promise that a mute switch can break is not one.

The longer and more useful answer is about everything that is not the Clock app.

The ring/silent switch does not do what people assume

The switch on the side of the iPhone (or the Action Button on newer models) does not mute the device. It silences a specific category of audio: ringtones, notification sounds, and app audio playing in certain modes. It has never silenced media playback — a video plays fine with the phone on silent — and it does not silence alarms or timers from the Clock app.

Focus and Do Not Disturb work differently again. They suppress notifications and, depending on configuration, calls. Alarms are exempt by design. Turning on Sleep Focus does not disarm your alarm, which is the single most common worry and the least justified one.

Where third-party apps used to fall down

If you have ever used an alarm app that told you to "keep the app open", "turn the volume up", "disable Low Power Mode", or "add us to Emergency Bypass", you have met the actual constraint.

Until recently, a third-party iOS app could not schedule a real system alarm. What it could schedule was a notification. Notifications are subject to entirely different rules than alarms:

  • Their sound is capped in length — a notification is a chime, not something that keeps going until you deal with it.
  • They are governed by the silent switch and by Focus.
  • The system decides how prominently to deliver them, and it is under no obligation to be dramatic about it.

So an app built on notifications could look exactly like an alarm clock and be structurally incapable of behaving like one. Every workaround those apps shipped — keep the app in the foreground playing silent audio, chain twenty notifications together, ask you to whitelist them — was a way of getting around not having the real thing. Some of them worked most of the time, which is arguably worse than failing honestly.

That history is worth understanding in full, because it explains almost every piece of odd advice in alarm-app support pages: whether third-party alarm apps work on iPhone.

What changed

iOS 26 introduced AlarmKit, a framework that lets a third-party app schedule a genuine system alarm — the same class of object the Clock app creates, with the same privileges. An alarm scheduled through AlarmKit is not a notification. It is not subject to the ring/silent switch, it fires through Focus, and it presents full-screen on the lock screen rather than as a banner you can flick away.

It requires the user to grant permission explicitly — you will see a system dialog asking whether the app may schedule alarms — and if that permission is off, the app cannot make a sound at all. That is worth knowing when you are diagnosing a missed alarm, because it is the first thing to check and the easiest to have skipped during setup.

What AlarmKit changed, and what it did not, is covered in what AlarmKit changed in iOS 26.

Diagnosing an alarm that did not ring

In rough order of likelihood:

  1. The alarm was not actually armed. Repeating alarms that were edited, time zones that moved, an alarm toggled off at some point last week.
  2. Permission was never granted. For a third-party app on iOS 26 or later, check Settings → the app → Alarms. If it is off, nothing else matters.
  3. The app is notification-based, not alarm-based. If it never asked for alarm permission, it is almost certainly using notifications, and it is subject to the switch and to Focus.
  4. Volume. Alarm volume on iOS is a system setting, not something an app controls. If the alarm volume slider is near zero, an alarm that fires correctly will still be nearly silent.
  5. The clocks moved. Twice a year, and there is one hour each March in which an alarm genuinely cannot fire — see daylight saving time and your iPhone alarm.
  6. You dismissed it and do not remember. Genuinely common, and not a joke — see why you sleep through your alarm.

Sources

  • Apple. AlarmKit — framework documentation. Alarms "break through silent mode", present on the Lock Screen and Dynamic Island, and require NSAlarmKitUsageDescription plus explicit user authorization.
  • Apple. Scheduling an alarm with AlarmKitAlarm, AlarmManager, one-shot and repeating schedules.
  • Apple. Wake up to the AlarmKit API — WWDC25 session 230.
  • Building Fifi's own AlarmKit integration checked part of this directly: it compiles against the iOS 26.2 SDK, and a repeating alarm set through the app has fired on real hardware and stayed armed. Ringing through silent mode is Apple's documented behaviour and has not been independently observed here — firing through Focus has. What is and is not verified says the same thing, and the two pages are meant to agree.

Fifi is built on AlarmKit for exactly the reason this page describes: an alarm that a side switch can silence is not an alarm. It is in development for iPhone and not yet on the App Store.

Read next