Reputation: 2794
On my iPhone XS, I created a shortcut in the Control Center to quickly change the text size and test to make sure all the sizes work on my iPhone.
However, I'm often in the simulator trying to test, and it's tedious to need to switch to the Settings app and go through multiple menus to switch the text size.
Since the simulator has no Control Center, is there another way to more easily change the text size?
Upvotes: 9
Views: 3259
Reputation: 385
You can also use the keyboard shortcuts ⌘ ⌥ + and ⌘ ⌥ - to change dynamic type size on the simulator.
Upvotes: 4
Reputation: 5671
The best way to reach your goal depends on the Xcode version you're using.
In Xcode 10, go to the Xcode
- Open Developer Tool
menu and select the Accessibility Inspector
element:
Settings
button to display the different text sizes.If you need further explanation about this tool, I strongly recommend to take a look at these WWDC detailed summaries that contain very useful information: 2016 and 2019.
In Xcode 11, there's an option directly accessible from the debug bar in the LOG window: if you haven't run your simulator, do it now and select the LOG window in Xcode:
Environment Overrides
button to open the new pane.Using these tools is, in my view, the fastest way to test the Dynamic Type feature implementation.
⚠️ EDIT 2022/06/24 ⚠️
SwiftUI in Xcode 14 provides a new live previews that are interactive by default: your changes are immediately updated in the canvas and displayed in all sizes as you make them. 👍
Upvotes: 14
Reputation: 437432
You can create a new dedicated simulator for that font size, which you can quickly choose from Xcode. For example:
Create a new simulator by tapping on “Window” » “Devices and Simulators” and tapping on the “+” button in the lower left corner:
Now, when you run the app from Xcode you can choose this new simulator where you “Choose scheme” in the Xcode toolbar:
For example:
Once you run the app on the simulator, jump to the “Settings” and change your font size there. You now have the two simulators that you can quickly choose from from the Xcode UI. You can even run the app simultaneously from both and watch how your app is rendered in both:
Upvotes: 2