iPhone screenshot without the status bar: what works, and what it costs
iOS has no setting that keeps the status bar out of a screenshot. Four workarounds exist, and each one charges something: preparation, a size Apple refuses, a Mac, or an edited file.
Published: · Last reviewed:
A standard screenshot on a real iPhone always includes the status bar: iOS has no option to leave it out. You can clean the bar before capturing, crop it off (the file then fails App Store size checks), fix its values in the Xcode Simulator with xcrun simctl status_bar, or paint over it afterward.
A real iPhone always captures the bar
Side button plus volume up (side button plus Home on models with a Home button) captures the whole screen, status bar included, and no setting changes that. An app can hide the bar itself, as a full-screen video does, but that is the developer's call, not yours. What remains is four compromises.
| Route | Bar in the file | Accepted size | Cost |
|---|---|---|---|
| Tidy the real bar | Yes, real values | Yes, 1179 × 2556 | Preparation |
| Crop | No | No, 1179 × 2394 | Upload refused |
| Simulator override | Yes, fixed values | Yes, on current models | A Mac with Xcode |
| Paint over | No | Yes, 1179 × 2556 | An edited image |
1. Keep the bar and tidy it
The only route that leaves an untouched capture of your own iPhone at an accepted size. Before you shoot:
- Battery: charge to 100%, then unplug. A cable means a charging bolt.
- Notifications: Do Not Disturb or another Focus silences most banners (allowed contacts, apps and time-sensitive alerts still get through), though a Focus can add its own icon by the clock.
- Wi-Fi: shoot where it reads full.
- Time: Settings, General, Date & Time, turn off Set Automatically, pick the minute. Turn it back on afterward: sign-in codes depend on the clock.
The target values are listed in what the status bar should say in an App Store screenshot.
2. Crop it, and leave Apple's size list
Two seconds of work, and it costs the dimensions. On an iPhone 14 Pro the bar is 54 pt, 162 px at 3× (see the measured status bar dimensions). Take it off 1179 × 2556 and you get 1179 × 2394, a size on no list, and App Store Connect refuses anything but an exact match. Stretching back to 2556 px tall distorts the image by about 7%. Crop only where nobody checks size: a README, a slide, a bug report.
3. Override it in the Simulator
This route keeps the bar and fixes what it says. With a device booted in the Xcode Simulator:
xcrun simctl status_bar booted override --time 9:41 --batteryState discharging --batteryLevel 100 --cellularBars 4 --wifiBars 3 --operatorName ''
--cellularBars runs 0 to 4, --wifiBars only 0 to 3, and --batteryState takes charging, charged or discharging. clear in place of override removes everything. xcrun simctl io booted screenshot shot.png then saves the device's native size (1206 × 2622 on an iPhone 17 when we ran it). The cost: a Mac with Xcode, and you capture the Simulator, not your phone.
4. Paint over it afterward
Fill the top 162 px with the app's background color: the bar is gone and the file stays 1179 × 2556. Invisible on a flat background, a visible seam on a gradient or a photo. The real cost is that the file stops being a capture of the device. It is an edited image.
Why the wallet stopped drawing its own bar
My Larp Wallet is a crypto wallet simulator: you type tokens and amounts, open the screen on your own phone and take the screenshot yourself. It used to draw its own status bar, which put two bars in one image, each with its own time and battery, contradicting each other.
The paid wallet now draws none. Opened from the home screen (steps on the page that explains why there is no download), it runs full screen, and the capture shows your phone's bar: real time, battery and signal, plus the carrier name where the phone displays one. Route 1 fits best; cropping or painting over still work on the file. The free demo and this site's illustrations still draw a bar. Every amount is typed in, so the image stays a mockup, and a tidy bar proves nothing.
Questions
Can you take an iPhone screenshot without the status bar?
Not as a standard screenshot on a real device. iOS has no setting that hides the bar from a capture, so it has to be cleaned before you shoot, cropped or painted over afterward, or fixed in the Xcode Simulator, which keeps the bar but sets what it shows.
Will a cropped screenshot still upload to App Store Connect?
No. Taking the 162 px status bar off a 1179 × 2556 iPhone 14 Pro capture leaves 1179 × 2394, which is not one of Apple's accepted sizes, so the upload stops at the dimension check.
How do I reset the Simulator status bar after an override?
Run xcrun simctl status_bar booted clear. It removes every override at once, and xcrun simctl status_bar booted list shows what is still set before you clear it.
Compose the screen instead of describing it
Your tokens, your amounts, your accent — laid out in the browser, then opened on your phone at your own address. A mockup, and we never pretend otherwise.
- Unlimited tokens, amounts and accents
- Add it to your home screen; it opens like an app
- Live market prices that keep moving
- Your own address, mylarpwallet.com/you
Cancel in one click · Secure payment by Stripe · Try the free demo
Keep reading
- Guide: iPhone status bar dimensions, measuredClock, signal bars, Wi-Fi and battery measured on a native 1179 px screenshot — geometry Apple does not publish.
- iPhone mockup generator vs screenshot: which to use whenTwo tools that produce the same-looking file for very different jobs. The choice comes down to whether the screen exists yet…
- What the status bar should say in an App Store screenshotNine forty-one, full bars, full battery — a convention with a reason behind it, and a set of measurements for anyone…
- Why a wallet simulator should run in a browser tabAn installer asks for trust, permissions and an update channel you keep forever. A tab asks for none of that, and it still…