Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 6 iPhone Simulator Application Support location

In Xcode 6, I have an app I'm using Core Data in, but there is no folder in Application Support for the iOS 8 iPhone Simulator. Where are my files and Core Data sqlite database being stored?

like image 762
HGDev Avatar asked Oct 08 '22 04:10

HGDev


People also ask

Where are iOS simulators stored?

type: ~/Library/Application Support/iPhone Simulator.

How do I change my current Location on iPhone simulator?

in iOS Simulator menu, go to Debug -> Location -> Custom Location. There you can set the latitude and longitude and test the app accordingly.

Where is device and simulator in Xcode?

The basic way to open a list of simulators is to use Xcode -> Window -> Devices and Simulators.


2 Answers

The simulator directory has been moved with Xcode 6 beta to...

~/Library/Developer/CoreSimulator

Browsing the directory to your app's Documents folder is a bit more arduous, e.g.,

~/Library/Developer/CoreSimulator/Devices/4D2D127A-7103-41B2-872B-2DB891B978A2/data/Containers/Data/Application/0323215C-2B91-47F7-BE81-EB24B4DA7339/Documents/MyApp.sqlite
like image 296
Scott Gardner Avatar answered Oct 11 '22 02:10

Scott Gardner


I would suggest that you use SimPholders to find your Simulator files. It is a menu bar item that tracks your simulator apps and lets you go directly to their folders and content. It's awesome.

like image 36
ucangetit Avatar answered Oct 11 '22 04:10

ucangetit