Skip to content

status_bar_override

Override the iOS simulator status bar to display specific values for time, battery, network indicators, and carrier name. This is particularly useful for taking consistent, polished screenshots for App Store submissions, marketing materials, or design reviews where you need a clean, predictable status bar.

ParameterTypeRequiredDefaultDescription
deviceIdstringYesThe UDID of the target simulator (must be booted).
timestringNoThe time string to display (e.g., "9:41").
batteryLevelnumberNoBattery percentage to display (0–100).
batteryStatestringNoBattery state indicator. Accepted values: "charged", "charging", "discharging".
wifiBarsnumberNoNumber of Wi-Fi signal bars to show (0–3).
cellularBarsnumberNoNumber of cellular signal bars to show (0–4).
operatorNamestringNoThe carrier/operator name to display (e.g., "Carrier").
dataNetworkstringNoThe data network type label. Accepted values: "wifi", "4g", "5g", "lte".

“Set up the status bar for App Store screenshots — 9:41, full battery, full signal”

{
"deviceId": "F3A1B2C3-D4E5-6789-ABCD-EF0123456789",
"time": "9:41",
"batteryLevel": 100,
"batteryState": "charged",
"wifiBars": 3,
"cellularBars": 4,
"operatorName": "Carrier",
"dataNetwork": "5g"
}

“Show the status bar with low battery and weak signal”

{
"deviceId": "F3A1B2C3-D4E5-6789-ABCD-EF0123456789",
"batteryLevel": 10,
"batteryState": "discharging",
"cellularBars": 1,
"wifiBars": 0,
"dataNetwork": "lte"
}

“Change the status bar time to 9:41 for the screenshot”

{
"deviceId": "F3A1B2C3-D4E5-6789-ABCD-EF0123456789",
"time": "9:41"
}

Custom operator name for localization screenshots

Section titled “Custom operator name for localization screenshots”

“Set the carrier name to ‘docomo’ for Japanese App Store screenshots”

{
"deviceId": "F3A1B2C3-D4E5-6789-ABCD-EF0123456789",
"time": "9:41",
"batteryLevel": 100,
"batteryState": "charged",
"wifiBars": 3,
"cellularBars": 4,
"operatorName": "docomo",
"dataNetwork": "5g"
}
Status bar overridden successfully.
Device: iPhone 16 Pro (F3A1B2C3-D4E5-6789-ABCD-EF0123456789)
Overrides applied:
Time: 9:41
Battery Level: 100%
Battery State: charged
Wi-Fi Bars: 3
Cellular Bars: 4
Operator Name: Carrier
Data Network: 5g