DEV Community

Cover image for Quickly Open the Current iPhone App’s Settings
LuckyTaorem
LuckyTaorem

Posted on Originally published at ltdeveloperblogs.github.io

Quickly Open the Current iPhone App’s Settings

What the Shortcut Does and How It Got Publicized

In early September, veteran Apple commentator John Gruber resurfaced a tip that has instantly become a favorite among power users. The tip revolves around a downloadable Shortcut created by Quinn Nelson that, when run, opens the Settings pane belonging to the app you’re currently using. No more scrolling through the Settings app, hunting for the correct entry, or toggling between apps.

The shortcut is distributed as a plain .shortcut file that can be imported into the native Shortcuts app. Once installed, it can be invoked from the Control Center via the “Run Shortcut” tile, or assigned to the Action button on iPhone models that support it (iPhone 15 Pro and later). The result is a single tap that lands you directly on the page where you can adjust notifications, location permissions, background refresh, and other app‑specific toggles.

Technical Breakdown: How the Shortcut Finds the Right Settings Page

Leveraging the x-apple-settings: URL Scheme

Apple’s iOS includes a hidden URL scheme, x-apple-settings:, which can open the Settings app to a specific pane when supplied with the appropriate bundle identifier. The shortcut performs three core steps:

  1. Detect the Frontmost App – Using the “Get Details of App” action, the shortcut queries the system for the bundle identifier (com.apple.mobilemail, com.spotify.client, etc.) of the app currently in the foreground.
  2. Construct the Settings URL – It concatenates the identifier with the scheme, forming a URL like x-apple-settings:com.spotify.client.
  3. Open the URL – The “Open URLs” action launches the Settings app directly to the target pane.

Because the shortcut runs in the Shortcuts runtime, it inherits the same sandboxed permissions as any user‑created automation, meaning it works on any iOS version that still supports the x-apple-settings: scheme (iOS 15 and later).

Compatibility Considerations

  • iOS Version – The shortcut has been tested on iOS 15, 16, and 17. Earlier versions lack the necessary URL handling and will simply open the generic Settings root.
  • App Support – Most first‑party Apple apps expose a dedicated Settings pane, but some third‑party apps either hide their settings or bundle them within the app itself. In those cases, the shortcut falls back to the generic app entry.
  • Action Button Mapping – The Action button can trigger a shortcut only on devices that expose the hardware button to Shortcuts (iPhone 15 Pro, 15 Pro Max, and later). Users on older hardware must rely on the Control Center tile or a Home Screen widget.

Why It Matters: Real‑World Benefits for Everyday Users

Speed and Cognitive Load Reduction

The average iPhone user spends roughly 30 seconds navigating to an app’s settings, according to informal usability studies. For power users who frequently toggle permissions (e.g., location, background refresh) across multiple apps, that time adds up. By collapsing the navigation into a single tap, the shortcut saves minutes per day and reduces the mental overhead of remembering where each setting lives.

Accessibility Gains

Visually impaired users often rely on VoiceOver to explore the Settings hierarchy. The shortcut’s direct jump eliminates the need for multiple swipe gestures, making it a valuable accessibility aid. Apple’s own accessibility guidelines emphasize reducing the number of steps required to accomplish a task, and this shortcut aligns perfectly with that principle.

Encouraging Automation Culture

Apple has been nudging developers and end‑users toward the Shortcuts ecosystem for years. This utility showcases a concrete, high‑impact use case that can inspire more community‑driven automations. As John Gruber noted, “If you find it a hassle digging through the Settings app to find the associated app menu, this solution saves you the bother.” The quote underscores the shortcut’s immediate relevance to a broad audience.

Industry Impact: What This Means for Apple and the iOS Ecosystem

Reinforcing the Value of Shortcuts

Apple’s decision to keep Shortcuts as a first‑party app, rather than deprecating it, signals a strategic commitment to user‑level automation. Tools like Quinn Nelson’s shortcut demonstrate that the platform can solve real‑world pain points without requiring OS‑level changes. This may influence Apple’s roadmap, encouraging deeper integration of shortcuts into system UI (e.g., native “Open App Settings” button in the multitasking switcher).

Potential Ripple Effects for App Developers

Developers now have a clear example of how to expose a clean Settings pane that can be accessed via URL scheme. Those who have not yet provided a dedicated Settings page may feel pressure to add one, improving overall app quality. Moreover, the shortcut could be bundled into an app’s onboarding flow as a “quick‑access” feature, enhancing user retention.

Context Within Apple‑Centric News

The shortcut’s emergence follows other Apple‑focused coverage on our blog, such as the Apple Drops Intel Support for Mac App Store Developers article, which highlighted Apple’s ongoing platform consolidation. Similarly, the Leakers Clash Over iPhone 16 Pro’s Third Color Choice piece underscored the community’s appetite for iPhone‑specific tweaks. The current shortcut fits neatly into that narrative, offering a tangible improvement to the iPhone experience.

Integration Options: From Control Center to the Action Button

Adding the Shortcut to Control Center

  1. Open Settings → Control Center. 2.

Read the full breakdown originally published at https://ltdeveloperblogs.github.io/posts/open-the-current-apps-settings-from-control-center/

Top comments (0)