Is there a quicker / better way to clear the iPhone Simulator cache than deleting its directory?

IosIphoneXcodeIos Simulator

Ios Problem Overview


So I'm still reasonably new to iOS development and I'm finding myself quite regularly needing to delete either DerivedData, or the contents of the iPhone Simulator directory, to get things to actually execute from my code. Clean in Xcode doesn't do the same as emptying those directories, right? And if not, is there an easier way to do it than lugging Finder around to get to them, and clearing them?

Ios Solutions


Solution 1 - Ios

66:99 and climbing:

Yes, there is a better way than going into every single simulator in town, and resetting contents and settings one at a time. Also much better than looking into your simulator's directory and yanking the cache from under its feet.

Quit iPhone Simulator, then run xcrun in Terminal:

xcrun simctl erase all

Safe and effective.

See https://stackoverflow.com/a/26394597/218152 for single device >xcrun simctl erase [device ID]

Solution 2 - Ios

In the iOS Simulator menu, there is an option called Reset Content and Settings...

This should do the trick.

EDIT:

To make this much quicker and easier, I added a shortcut key like this...

In System Preferences, choose Keyboard

Keyboard System Preferences

Then choose the Shortcuts tab. And click App Shortcuts

App Shortcuts Click the plus button to add another shortcut.

enter image description here Lastly:

  1. Click theChoose Simulator from the Application: drop-down. If it's not there, scroll to the bottom of the application list and choose "Other...". Then type "simulator" into the search and add the Simulator from there.
  2. Type Erase All Content and Settings... into the Menu Title: text-box.
  3. Type your preferred shortcut key into the Keyboard Shortcut:. (I use command-period)
  4. Click the Add button.

enter image description here

Now, while in your iOS Simulator, you can simply use your new shortcut key to reset.


If the Simulator doesn't appear in the drop down list:

  1. In a Finder window, go to your Applications folder.
  2. Right-click Xcode and choose "Show Package Contents".
  3. Navigate to Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/
  4. You will see iPhone Simulator.app.
  5. Now, in the Settings app, instead of choosing iOS Simulator which is missing, you choose Other....
  6. This will cause a window to appear that has a list of Applications.
  7. Now, drag iPhone Simulator.app from your Finder window to the window that appeared when you clicked Other....

Solution 3 - Ios

For web development and testing on the iOS Simulator (Safari):

  1. With both iOS Simulator and Safari open, go to Safari > Develop > iOS Simulator and select your page which will give you access to the Web Inspector tools.

  2. Go to Safari > Develop > Empty Caches to clear the cache on iOS Safari.

Solution 4 - Ios

Web inspector new has option to disable cache 2020 solution

enter image description here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionLukeView Question on Stackoverflow
Solution 1 - IosSwiftArchitectView Answer on Stackoverflow
Solution 2 - IosJeff WolskiView Answer on Stackoverflow
Solution 3 - IosAdrian FlorescuView Answer on Stackoverflow
Solution 4 - Iosuser956584View Answer on Stackoverflow