沙盒路径
2018-03-28 本文已影响14人
十一遥
沙盒就是手机内的存储空间,我们可以将app中的数据存储到手机的存储中。对应着就是电脑的硬盘。沙盒中不同的文件夹有不同的作用。
Documents
保存应用程序生成的数据,会自动备份在iCloud中。
如果保存下载的其他数据,程序提交的时候会悲剧
tmp
临时文件目录,系统会自动清理,重新启动会被清空,程序员无需管理
library/Caches
缓存文件目录, 保存后续需要使用的临时文件, 主要用于保存离线数据或者图片, 网络下载的文件,可以保存在此目录.
保存在这个目录中的文件,需要程序员提供清理的功能
library/ Preferences
用户偏好, [NSUserDefaults standardUserDefaults] 直接读写
附一个 NSString 的分类 NSString (SandBox)
#import "NSString+SandBox.h"
@implementation NSString (SandBox)
- (instancetype)appendCache {
return [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES).lastObject stringByAppendingPathComponent:self.lastPathComponent];
}
- (instancetype)appendDocument {
return [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).lastObject stringByAppendingPathComponent:self.lastPathComponent];
}
- (instancetype)appendTemp {
return [NSTemporaryDirectory() stringByAppendingPathComponent:self.lastPathComponent];
}
@end