Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ios simulator -- disable slow animations FOREVER?

I'm accidentally turning slow animations about 50 times a day (I think it may because I'm using a virtual keyboard via Synergy) ... How can I disable slow animations in the simulator FOREVER?

like image 669
Lescai Ionel Avatar asked Apr 22 '13 14:04

Lescai Ionel


People also ask

Why is iOS simulator slow?

You accidentally pressed the slow animation on debug when using simulator. So Run Simulator -> Debug -> Uncheck Slow Animation.

How to Slow down iOS simulator?

You can now try to debug your app using the iOS simulator, and press ⌘T to turn on/off the slow animations feature.


1 Answers

EDIT: Beginning with Xcode 5.0.1 with the iOS 7.0.3 simulator, cmd+T is now declared as the keyboard shortcut for Toggling Slow Animations and eliminates the observed informal shortcuts listed my my original answer.


This is something that I too encounter all...the...time, but I finally figured out what I was doing to cause it to be enabled in my simulator.

It turns out that iOS Simulator has a few shortcut key for enabling/disabling slow animations that are easily triggered when navigating through simulator (like gaining access to the multitasking bar) or when using system shortcuts for screen shots. I've run across two undocumented keyboard shortcuts:

  • Double-press of CMD+Shift (easy to inadvertently do when gaining access to the multitasking bar)
    • Alternate: Shift + Double-press of CMD
  • Triple-press of Shift

Regardless of the method, if you have a debugger session running in Xcode, you can easily see the console message logging when these shortcuts have activated/deactivated slow-motion mode.

Unfortunately, there does not appear to be a way to disable these 'features' of iOS Simulator. All I've been able to do so far is alter my workflow slightly to avoid key combinations that could trigger slow motion animation, but now have a quicker way to undo the behavior.

like image 71
Bryan Musial Avatar answered Oct 05 '22 09:10

Bryan Musial