Guideline 2.5.9
Guideline 2.5.9 - Software Requirements: Overriding Standard System UI Controls
Our Take
Apple is rejecting your app because it alters the standard behavior of system-provided UI elements such as the volume up/down buttons, the ringer/silent switch, screen brightness controls, or standard iOS gestures. Apple requires that hardware buttons and system UI controls behave as users expect across all apps. The most common trigger is remapping the volume buttons. Some apps (particularly games and camera apps) try to use volume buttons as shutter triggers, game controls, or other custom functions. While the volume buttons can legitimately trigger a camera shutter (the system Camera app does this), Apple is selective about which apps can repurpose hardware buttons. This also covers: overriding the back swipe gesture in navigation controllers, preventing the system volume HUD from appearing, disabling the status bar pull-down for Control Center, or intercepting system gestures like the home indicator swipe. Apple wants users to have consistent, predictable interactions across all apps.
Resolution Guide
Restore default button behavior
Remove any code that observes or intercepts hardware button events for non-standard purposes. For volume buttons, remove AVAudioSession route change observers or MPVolumeView hacks used to detect presses.
Restore system gestures
If you've overridden preferredScreenEdgesDeferringSystemGestures or prefersHomeIndicatorAutoHidden, remove these unless they're truly necessary for an immersive experience (games in full screen).
Don't hide system UI
Ensure the status bar, volume HUD, and Control Center access work normally. If you need to hide the status bar during gameplay, use prefersStatusBarHidden properly and restore it outside of gameplay.
Use standard navigation patterns
Don't disable the back swipe gesture in UINavigationController. If you have a custom transition, implement UINavigationControllerDelegate properly instead of disabling the interactive pop gesture.
Document exceptions in Review Notes
If you have a legitimate reason for non-standard behavior (e.g., immersive game, camera app), explain it in review notes with screenshots.
Prevention
Example Rejection Email
Consider Appealing
If your use of hardware buttons is a well-established pattern in your app category (e.g., volume button as camera shutter in a camera app), explain the precedent and user expectation in the Resolution Center. Apple does grant exceptions for established conventions.
Before & After
Document scanner app uses volume-down button to trigger page capture, with hidden MPVolumeView to suppress the volume HUD
On-screen capture button added with haptic feedback. Volume buttons restored to standard volume control. Optional: Review Notes explain that camera apps like the system Camera use volume buttons as shutter, requesting consideration for the same convention.
What changed: Add an on-screen alternative first, then appeal if the volume button shutter is important to your UX. Always have a fallback.
Community Solutions · 0
Sign in to share your solution.
More Guideline 2 (Performance) rejections
- Guideline 2.1 - App Completeness: App Crashes During Review
- Guideline 2.1 - App Completeness: App Requires External Hardware Not Provided for Review
- Guideline 2.1 - App Completeness: Crashes on Launch
- Guideline 2.1 - App Completeness: Demo Account Not Working
- Guideline 2.1 - App Completeness: IAP Products Not Found in Binary
- Guideline 2.1 - App Completeness: Missing App Icon