Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the iOS Simulator’s “Motion Control” menu item do?

In the iOS Simulator that ships with Xcode 5, there is a menu item Window → Motion Control. Clicking it seems to have no effect. Does anyone know what it does? Is it related to either the M7 coprocessor on recent iOS devices, or the “Switch Control” accessibility feature?

like image 991
Zev Eisenberg Avatar asked Jan 22 '26 05:01

Zev Eisenberg


1 Answers

I can’t be sure what it does, but I disassembled the iOS Simulator MainMenu.nib using NibUnlocker, and that menu item sends a method called -showMotionControl: to the GuiController class. My best guess is that it is related to an Apple internal feature that never shipped. Perhaps a way to simulate gyro and/or accelerometer values?

like image 176
Zev Eisenberg Avatar answered Jan 23 '26 21:01

Zev Eisenberg