08获取沙盒路径_NSUserDefaults_WriteToFile_双指针

大纲

一、获取沙盒路径
寻找沙盒路径:

NSString *homeDirectoryPath = NSHomeDirectory();

获取Documents的方法:
1.拼接路径
2.搜索
二、NSUserDefaults
NSUserDefaults(单例类):直接操作 沙盒根目录下的Library/preference/plist文件
可存储少量数据:数组、字典、字符串、基本数据类型、NSData
NSUserDefaults是根据时间戳将数据写入plist文件中,也就是调用setObject方法时,数据不会立刻写入;如果在此过程中,程序突然崩溃,会造成数据写入失败,为避免这种情况出现,就同步写入。
synchronize:同步写入(调用setObject方法时)
三、WriteToFile

writeToFile:

可存储少量数据
特点:覆盖写入
可以存储:数组/字典/字符串/NSData

File:文件写入路径
atomically:若路径下不存在该文件,是否自动(创建)

[dict writeToFile:filePath atomically:YES];

error:表示系统返回的文件写入失败的错误信息
&error:作为一个指针传给系统

NSError *error = nil;
[string writeToFile:filePath atomically:YES encoding:NSUTF8StringEncoding error:&error];

四、双指针
指针:一种数据类型
与其他数据类型的区别:保存地址
虽然很小,但它也有自己的内存地址。

双指针,指针的指针
作用:通常用于在方法内部改变指针指向

正文

一、获取沙盒路径
寻找沙盒路径:NSString *homeDirectoryPath = NSHomeDirectory();
获取Documents的方法:
1.拼接路径
2.搜索

项目:DataStore0411
寻找沙盒路径:

- (void)viewDidLoad
{
    [super viewDidLoad];
    //获取沙盒路径
    NSString *homeDirectoryPath = NSHomeDirectory();
    NSLog(@"%@",homeDirectoryPath);
    
}

获取Documents的方法:

//1.拼接路径
    //方法1:
    NSString *documentsPath = [NSString stringWithFormat:@"%@/Documents",homeDirectoryPath];
    NSLog(@"documentsPath = %@",documentsPath);
    //方法2:
    NSString *documentsPath2 = [homeDirectoryPath stringByAppendingPathComponent:@"Documents"];
    NSLog(@"documentsPath2 = %@",documentsPath2);
//2.搜索
    //NSSearchPathDirectory directory:要搜索的文件夹
    //NSSearchPathDomainMask domainMask:搜索的区域
    //BOOL expandTilde:是否展开全路径
    NSArray *pathArr = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsPath3 = [pathArr objectAtIndex:0];
    NSLog(@"documentsPath3 = %@",documentsPath3);
    #pragma mark - **************** Library
    NSString *libraryPath1 = [homeDirectoryPath stringByAppendingPathExtension:@"Library"];
    NSLog(@"libraryPath1 = %@",libraryPath1);
    NSString *libraryPath2 = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES)[0];
    NSLog(@"libraryPath2 = %@",libraryPath2);
    #pragma mark - **************** tmp
    NSString *tmpPath = NSTemporaryDirectory();
    NSLog(@"tmpPath = %@",tmpPath);
    #pragma mark - **************** app
    NSString *appPath = [[NSBundle mainBundle] bundlePath];
    NSLog(@"appPath = %@",appPath);
    #pragma mark - **************** 文件路径 右键→显示包内容
    NSString *imgPath = [[NSBundle mainBundle] pathForResource:@"1" ofType:@"png"];

二、NSUserDefaults
NSUserDefaults(单例类):直接操作 沙盒根目录下Library文件夹下的preference中的plist文件
可以存储少量数据:数组、字典、字符串、基本数据类型、NSData
NSUserDefaults是根据时间戳将数据写入plist文件中,也就是调用setObject方法时,数据不会立刻写入;如果在此过程中,程序突然崩溃,会造成数据写入失败,为避免这种情况出现,就同步写入。
synchronize:同步写入(调用setObject方法时)

项目:DataStore_NSUserDefaults0411

    //NSUserDefaults(单例类):直接操作 沙盒根目录下Library文件夹下的preference中的plist文件
    //可以存储少量数据:数组、字典、字符串、基本数据类型、NSData
    NSString *libraryPath = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES)[0];
#pragma mark - **************** 存储数据
//[userDefaults setObject:array forKey:@"name"];
//NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
- (IBAction)saveDataClick:(UIButton *)sender
{
    NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
    if (sender.tag == 0)
    {
        //数组/字典
        NSArray *array = [[NSArray alloc]initWithObjects:@"张三",@"李四", nil];
        //写入本地沙盒的plist
        [userDefaults setObject:array forKey:@"name"];
    }
    else if (sender.tag == 1)
    {
        //字符串
        NSString *string = @"周一";
        [userDefaults setObject:string forKey:@"日期"];
    }
    else if (sender.tag == 2)
    {
        //基本数据类型
        [userDefaults setInteger:28 forKey:@"年龄"];
    }
    else
    {
        //NSUTF8StringEncoding:国际编码方式
        NSString *string = @"12345678";
        NSData *data = [string dataUsingEncoding:NSUTF8StringEncoding];
        [userDefaults setObject:data forKey:@"password"];
    }
    //NSUserDefaults是根据时间戳将数据写入plist文件中,也就是调用setObject方法时,数据不会立刻写入;如果在此过程中,程序突然崩溃,会造成数据写入失败,为避免这种情况出现,就同步写入。
    //synchronize:同步写入,调用setObject方法时,
    [userDefaults synchronize];
}

#pragma mark - **************** 读取数据
- (IBAction)readDataClick:(UIButton *)sender
{
    NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
    if (sender.tag == 0)
    {
        //数组/字典
        NSArray *array = [userDefaults objectForKey:@"name"];
        NSLog(@"%@",array);
    }
    else if (sender.tag == 1)
    {
        //字符串
        NSString *string = [userDefaults objectForKey:@"日期"];
        NSLog(@"%@",string);
    }
    else if (sender.tag == 2)
    {
        //基本数据类型
        NSInteger age = [userDefaults integerForKey:@"年龄"];
        NSLog(@"%d",age);
    }
    else
    {
        //NSData
        NSData *data = [userDefaults objectForKey:@"password"];
        NSString *str = [[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];
        NSLog(@"%@",str);
    }
}

三、WriteToFile
writeToFile:
可存储少量数据
特点:覆盖写入
可以存储:数组/字典/字符串/NSData

File:文件写入路径
atomically:若路径下不存在该文件,是否自动(创建)

[dict writeToFile:filePath atomically:YES];

error:表示系统返回的文件写入失败的错误信息
&error:作为一个指针传给系统

NSError *error = nil;
[string writeToFile:filePath atomically:YES encoding:NSUTF8StringEncoding error:&error];

项目:DataStore_WriteToFile0411

- (NSString *)getFilePath
{
    NSString *documentsPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
    NSLog(@"%@",documentsPath);
    NSString *filePath = [documentsPath stringByAppendingPathComponent:@"text.plist"];
    return filePath;
}
/** 
 writeToFile:
 写文件:存储少量数据
 特点:覆盖写入
 可以存储:数组/字典/字符串/NSData
 */
#pragma mark - **************** 存储数据
- (IBAction)saveDataClick:(UIButton *)sender
{
    //获取文件路径
    NSString *filePath = [self getFilePath];
    if (sender.tag == 0)
    {
        NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:@"张三",@"name", nil];
        //参数1:将文件写入哪个路径下
        //参数2:是否自动(创建)该路径下的文件
        [dict writeToFile:filePath atomically:YES];
    }
    else if (sender.tag == 1)
    {
        NSString *string = @"111";
        [string writeToFile:filePath atomically:YES encoding:NSUTF8StringEncoding error:nil];
        //error:表示系统返回的文件写入失败的错误信息
        //&error:作为一个指针传给系统
//        NSError *error = nil;
//        [string writeToFile:filePath atomically:YES encoding:NSUTF8StringEncoding error:&error];
    }
    else
    {
        NSString *str = @"67人";
        NSData *data = [str dataUsingEncoding:NSUTF8StringEncoding];
        [data writeToFile:filePath atomically:YES];

        [data writeToFile:filePath atomically:YES];
    }
}
#pragma mark - **************** 读取数据
- (IBAction)readDataClick:(UIButton *)sender
{
    NSString *filePath = [self getFilePath];
    if (sender.tag == 0)
    {
        //方法1:
//        NSDictionary *dic = [[NSDictionary alloc]initWithContentsOfFile:filePath];
        //方法2:
        NSDictionary *dic = [NSDictionary dictionaryWithContentsOfFile:filePath];
        NSLog(@"%@",dic);
    }
    else if (sender.tag == 1)
    {
//        NSString *string = [[NSString alloc]initWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];
        NSString *string = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];
        NSLog(@"str = %@",string);
    }
    else
    {
//        NSData *data = [[NSData alloc]initWithContentsOfFile:filePath];
        NSData *data = [NSData dataWithContentsOfFile:filePath];
        NSString *str = [[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];
        NSLog(@"str = %@",str);
    }
}

四、双指针
指针:一种数据类型
与其他数据类型的区别:保存地址
虽然很小,但它也有自己的内存地址。

双指针,指针的指针
作用:通常用于在方法内部改变指针指向

项目:DoublePointer0411

- (void)viewDidLoad {
    [super viewDidLoad];
    //指针:一种数据类型
    //与其他数据类型的区别:保存地址
    //虽然很小,但它也有自己的内存地址。
    People *people = [[People alloc]init];
    NSLog(@"people%@,people%p,&people%p",people,people,&people);
    
    #pragma mark - **************** 双指针
    //双指针:指针的指针
    //people1 和 p 是两个不同的指针,修改p不会影响people1
    //作用:通常用于在方法内部改变指针指向
    People *people1 = nil;
    NSLog(@"1.%@,%p,%p",people1,people1,&people1);
    [self setPeople:people1];
    NSLog(@"4.%@,%p,%p",people1,people1,&people1);
    
    //使用双指针方法
    People *people2 = nil;
    NSLog(@"1.%@,%p,%p",people2,people2,&people2);
    [self createPeople:&people2];
}
//双指针
- (void)createPeople:(People **)p
{
    NSLog(@"2.%@,%p,%p",*p,*p,&*p);
    NSLog(@"3.(null),%p,%p",p,&p);
    //*p:表示获取people2的指针
    *p = [People new];
    NSLog(@"4.%@,%p,%p",*p,*p,&*p);
}
//单指针
- (void)setPeople:(People *)p
{
    NSLog(@"2.%@,%p,%p",p,p,&p);
    p = [People new];
    NSLog(@"3.%@,%p,%p",p,p,&p);
}
@end
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,816评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,729评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,300评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,780评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,890评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,084评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,151评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,912评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,355评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,666评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,809评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,504评论 4 334
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,150评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,882评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,121评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,628评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,724评论 2 351

推荐阅读更多精彩内容

  • *面试心声:其实这些题本人都没怎么背,但是在上海 两周半 面了大约10家 收到差不多3个offer,总结起来就是把...
    Dove_iOS阅读 27,135评论 30 470
  • 27、ViewController的didReceiveMemoryWarning是在什么时候调用的?默认的操作是...
    烟雨平生花飞舞阅读 566评论 0 1
  • iOS 開発の結構 画面 UI UIWebview [[UIApplication sharedApplicati...
    RencaiXiong阅读 580评论 0 0
  • iOS本地缓存数据方式有五种: 1.直接写文件方式:可以存储的对象有NSString、NSArray、NSDict...
    爱哼的阿狸阅读 582评论 0 0
  • 前言 iOS本地缓存数据方式有五种: 1.直接写文件方式:可以存储的对象有NSString、NSArray、NSD...
    一等到天幻阅读 1,972评论 0 1