Skip to content

Instantly share code, notes, and snippets.

@iccir
Last active October 9, 2023 16:44
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iccir/72574fafc98c1a86abf982c151730739 to your computer and use it in GitHub Desktop.
Save iccir/72574fafc98c1a86abf982c151730739 to your computer and use it in GitHub Desktop.
iOS Simulator Status Bars
# iPhone with home button
xcrun simctl status_bar booted clear
xcrun simctl status_bar booted override \
--time "9:41 AM" \
--wifiBars 3 --cellularBars 4 --operatorName ""
xcrun simctl spawn booted defaults write com.apple.springboard SBShowBatteryPercentage 1
# iPhone X
xcrun simctl status_bar booted clear
xcrun simctl status_bar booted override --time "9:41" --wifiBars 3 --cellularBars 4
# iPad
# Note: Unlike apple.com, we hide the date on all screenshots
xcrun simctl status_bar booted clear
xcrun simctl status_bar booted override --time "9:41 AM" --wifiBars 3 --wifiMode active
xcrun simctl spawn booted defaults write com.apple.springboard SBShowBatteryPercentage 1
xcrun simctl spawn booted defaults write com.apple.UIKit StatusBarHidesDate 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment