How to resize the iPhone/iPad Simulator?
Master System Design with Codemia
Enhance your system design skills with over 120 practice problems, detailed solutions, and hands-on exercises.
Introduction
Resizing the iOS Simulator is useful when you need more screen space, pixel-accurate screenshots, or side-by-side testing with code and logs. The simulator supports fixed scale presets and automatic sizing to fit your desktop display. A good workflow combines keyboard shortcuts for speed and menu settings for predictable output.
Quick Resize Controls
The fastest way to resize simulator windows is keyboard scale shortcuts:
Command + 1for 100 percent scale.Command + 2for 75 percent scale.Command + 3for 50 percent scale.Command + 4for 33 percent scale.
These values can vary slightly depending on simulator version, but the shortcut pattern remains stable in Xcode tooling.
Resize from Simulator Menu
You can also change scale from the menu bar in the Simulator app.
- Open Simulator.
- Choose
Window. - Select
Scale. - Pick the desired scale value.
This method is clearer when you are presenting to teammates or recording test steps.
Fit to Screen and Physical Size Modes
Two display goals are common:
- Fit mode for working comfort on smaller laptop screens.
- Physical size mode for design verification.
Use 100 percent for realistic visual density checks, especially when validating spacing and touch target size. Use smaller scales for rapid debugging when multiple windows must remain visible.
Device Choice vs Window Scale
Changing window scale does not change simulated device resolution. If you need a different screen class, switch the simulated device model.
After selecting a different model, apply scale again if needed. Device choice and window size are independent controls.
iPad-Specific Workflow
On iPad simulators, landscape orientation plus large model sizes can exceed laptop displays. A practical setup:
- Use 50 percent scale when coding.
- Temporarily switch to 100 percent before screenshot capture.
- Use external display or larger monitor for split-screen feature testing.
This reduces scrolling and keeps debug tools visible while preserving accurate final verification.
Screenshot and Recording Consistency
Resize settings affect how much is visible, but simulator screenshots remain tied to device resolution, not desktop scale. That is useful for reproducible QA assets.
Useful shortcuts:
Command + Sto capture screenshot.Command + Left ArroworCommand + Right Arrowto rotate orientation.
Capture in both portrait and landscape when layouts use size-class-dependent components.
Troubleshooting Resize Issues
If scale options are disabled or window behavior is strange:
- Close Simulator and reopen from Xcode.
- Stop and restart the booted device.
- Clear stale simulator state if needed.
Erasing is heavy, so use it only after normal restart attempts fail.
Workflow for Responsive UI Validation
For consistent UI checks:
- Pick representative iPhone and iPad models.
- Test at comfortable scale for development speed.
- Recheck at 100 percent for visual fidelity.
- Validate with dynamic type and dark or light appearance modes.
This sequence catches layout defects that may be hidden by a very small simulator window.
Common Pitfalls
- Confusing simulator window scale with actual simulated device resolution.
- Taking design decisions from low-scale view without 100 percent verification.
- Using only one device model for all layout checks.
- Forgetting orientation checks when layouts rely on horizontal size class.
- Erasing all simulators too early instead of restarting specific devices first.
Summary
- Use keyboard shortcuts for fast scale changes during development.
- Use menu-based scale settings for predictable, documented test steps.
- Remember that scale changes window size, not device resolution.
- Recheck important UI decisions at full-size display mode.
- Combine device switching and scale control for effective multi-form-factor testing.

