How to show Touch indicator on iOS simulator

Published on Apr 3, 2022

1 min read

XCODE

Sometimes it is necessary to highlight a single touch event on the iOS simulator's screen and show the tap that registers it. For example, this is useful when recording a video or a gif using the simulator.

The iOS simulator comes with a pre-configured list of settings, including to display the touch indicator. However, sometimes, it is hard to find them.

Enable Touch Indicator on iOS simulator

🔗

To enable the touch indicator, open the terminal window and run the following command:

defaults write com.apple.iphonesimulator ShowSingleTouches 1

It accepts a boolean value of 1.

After running the command, if the iOS simulator is already running, close and restart it.

To test it out, open the simulator and tap on the screen.

ss1

Disable Touch Indicator on iOS simulator

🔗

To disable the touch indicator from the terminal window, run the following command to change the boolean value to 0:

defaults write com.apple.iphonesimulator ShowSingleTouches 0

More Posts

Browse all posts

Aman Mittal author

I'm a software developer and a technical writer. On this blog, I write about my learnings in software development and technical writing.

Currently, working maintaining docs at 𝝠 Expo. Read more about me on the About page.


Copyright ©  2019-2024 Aman Mittal · All Rights Reserved.