获取App的Documents路径

时间:2014-05-08 09:28:59   收藏:0   阅读:342

有两种写法可以获取到Documents的路径

1. 

1
NSString *path = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];

  这种写法不是很严谨

2.

1
2
NSArray *filePath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentPath = [filePath objectAtIndex:0];

  这种获取路径的方法比较好,不是自己写死了路径。

 

获取App的Documents路径,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!