Xcode6.4里写了个简单的iOS程序在模拟器中跑。
其中用到了NSUserDefaults来保存属性文件plist,那么这个文件实际路径在哪里呢?在网上搜了一下,发现几种说法(*表示当前用户名):
1.Xcode5和之前的版本模拟器路径在:
/Users/*/Library/Application Support/iPhone Simulator
里。
2.Xcode6中,模拟器位置发生了变化:
/Users/*/Library/Developer/CoreSimulator
其中的Devices目录中的每个子目录表示一种实际的模拟器;每种模拟器都有一个device.plist文件,可以知晓该模拟器的设备和系统版本。
聪明的我们可以通过按修改时间排序快速找到发生变化模拟器的子目录:
3.Xcode5及之前的版本中沙盒地址如下:
/Users/*/Library/Application Support/iPhone Simulator/x.x.x/Applications
4.在Xcode6中沙盒应用程序路径为:
/Users/*/Library/Developer/CoreSimulator/Devices/模拟器UDID/data/Containers/Bundle/Application
5.NSUserDefault文件在Xcode6中在:
/Users/*/Library/Developer/CoreSimulator/Devices/模拟器UDID/data/Library/Preferences
文件夹中。
实际在Xcode6.4中发现NSUserDefault的plist文件不在第5条所说的路径中,因为有一条记录的key为onOff所以通过暴力搜索发现路径如下:
pwd
/Users/apple/Library/Developer/CoreSimulator/Devices/模拟器UDID/data
apple@kissAir: data$grep -ri onOff *
Binary file Containers/Bundle/Application/APP UDID/ShowMyPicture.app/ShowMyPicture matches
Binary file Containers/Data/Application/APP UDID/Library/Preferences/HopyStudio.ShowMyPicture.plist matches
注意最后一条搜索结果,这个就是实际文件的路径,打开后如下:
时间: 2024-10-01 09:27:38