iPhone模拟器在哪里存储已安装的应用程序?

时间:2010-02-15 10:50:09

标签: iphone ios-simulator

我想看看iPhone模拟器中的app目录,以便我可以看到它在我使用我的应用程序时创建了哪种文件以及这些文件中有什么东西(即当它创建sqlite文件时)对于核心数据和类似的东西)。

4 个答案:

答案 0 :(得分:10)

你可以在

中找到它
~/Library/Application Support/iPhone Simulator/User/Applications

答案 1 :(得分:3)

每次构建应用程序时,都会在以下位置创建一个新目录:

 ~/Library/Application Support/iPhone Simulator/User/Applications

如果重建应用程序,则重命名应用程序目录。我通常按​​最新排序列表并查看其中的最新目录。

答案 2 :(得分:3)

在Lion上,用户/ [用户名] /库被隐藏。

使用

chflags nohidden / users / [username] / library

在终端中显示文件夹。

答案 3 :(得分:2)

至少从Xcode 6.1开始,我的应用程序被转储到

~/Library/Developer/CoreSimulator/Devices/<hexstring>/data/Containers/Bundle/Application/<hexstring>

您可以将最近安装的应用程序粘贴到您最喜爱的终端中,以便进入最近安装的应用程序:

cd ~/Library/Developer/CoreSimulator/Devices/
cd $(ls -t | head -1)
cd data/Containers/Bundle/Application
cd $(ls -t | head -1)