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

你可能感兴趣的:(08获取沙盒路径_NSUserDefaults_WriteToFile_双指针)