1 // 在Documents目录下创建一个名为LaunchImage的文件夹 2 NSString *path = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppending...
分类:
其他好文 时间:
2014-11-04 16:49:31
阅读次数:
149
原出处不详,有原作者看到的话,请联系我添加源地址链接:)iphone沙箱模型的有四个文件夹,分别是什么,永久数据存储一般放在什么位置,得到模拟器的路径的简单方式是什么.documents,tmp,app,Library。(NSHomeDirectory()),手动保存的文件在documents文件里...
分类:
移动开发 时间:
2014-10-30 20:35:40
阅读次数:
158
1 // 在Documents目录下创建一个名为LaunchImage的文件夹 2 NSString *path = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendin...
分类:
移动开发 时间:
2014-10-28 21:12:41
阅读次数:
188
分类:网络安全/工具使用/文章常用路径工具函数NSString*NSUserName(void)返回当前用户的登录名NSString*NSFullUserName(void)返回当前用户的完整用户名NSString*NSHomeDirectory(void)返回当前用户主目录的路径NSString*...
分类:
其他好文 时间:
2014-10-24 12:53:00
阅读次数:
168
phone沙箱模型的有四个文件夹,分别是什么,永久数据存储一般放在什么位置,得到模拟器的路径的简单方式是什么.documents,tmp,app,Library。(NSHomeDirectory()),手动保存的文件在documents文件里Nsuserdefaults保存的文件在tmp文件夹里1、Documents目录:您应该将所有de..
分类:
移动开发 时间:
2014-10-23 07:02:58
阅读次数:
173
//获取Documents目录 NSString *home=NSHomeDirectory(); NSLog(@"%@",home); NSString *documents=[home stringByAppendingPathComponent:@"Documents/text.txt...
分类:
其他好文 时间:
2014-10-18 22:15:02
阅读次数:
142
IOS访问沙盒目录API获取程序目录 NSString *homePath = NSHomeDirectory();~/Library/Application Support/iPhone Simulator/7.1/Applications/66095245-FD69-40D5-B3F5-959....
分类:
移动开发 时间:
2014-09-28 17:52:43
阅读次数:
191
NSLog(@"%@", NSHomeDirectory());//沙盒主目录
NSLog(@"%@", NSTemporaryDirectory());//沙盒中tmp文件夹的路径
NSLog(@"%@", [[NSBundle mainBundle] bundlePath]);//沙盒中*.app包的路径
NSLog(@"%@", [NSSearchPathForDir...
分类:
移动开发 时间:
2014-09-19 21:13:26
阅读次数:
226
五、Plist文件String方式添加NSString *path=[NSHomeDirectory() stringByAppendingPathComponent:@"Array.plist"];NSString *content=@"abcd";[contect writeToFile:pat...
分类:
移动开发 时间:
2014-09-17 11:33:32
阅读次数:
258
读取 1 // 1.读取沙盒中plist文件 2 3 // 1.1.获得沙盒根路径 4 5 NSString *home = NSHomeDirectory(); 6 7 // 1.2.拼接Documents路径 8 9 NSString *docPath ...
分类:
其他好文 时间:
2014-09-09 15:19:08
阅读次数:
172