-
-
Save JoshHrach/ad82ba1cab75b6f97ca3810024eb3e24 to your computer and use it in GitHub Desktop.
LLDB 'script' to enable full screen mode in the iOS Simulator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
lldb -n Simulator \ | |
-o "expr ((NSWindow *)[(NSArray *)[[NSApplication sharedApplication] windows] setValue:@(1<<7|1<<8|1<<11) forKey:@\"collectionBehavior\"]);" \ | |
-o "set set auto-confirm true" \ | |
-o quit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment