iOS sim record touches
My thoughts about: iOS simulator record touches
1 min read
This is a very short, but very useful tip.
When recording a video using a simulator you can enable the recording of touches to make the video visually easier to read.
With the simulator open and ready to record, simply open up a terminal and write:
defaults write com.apple.iphonesimulator ShowSingleTouches 1
Now your recording will have touches enabled. To disable touches again, simply run this command (setting ShowSingleTouches to 0):
defaults write com.apple.iphonesimulator ShowSingleTouches 0
Previous
Simple complex numbers (3 min read)
Next up
Hello world (3 min read)