• 接口请求数据 缓存本地 .plist 文件


    //奖获取的数组或者字典存入   financeArr 数据数组

    1。//本地保存

                NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

                //获取完整路径

                NSString *documentsDirectory = [paths objectAtIndex:0];

                NSString *plistPath = [documentsDirectory stringByAppendingPathComponent:@"Test.plist"];//这里就是你将要存储的沙盒路径(.plist文件,名字自定义)

                [financeArr writeToFile:plistPath atomically:YES];

    2。//取出缓存

    //获取路径

        NSArray *sandboxpath= NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

        NSString *filePath = [[sandboxpath objectAtIndex:0] stringByAppendingPathComponent:@"Test.plist"];

        //获取数据

        NSMutableArray *dataArr = [NSMutableArray arrayWithContentsOfFile:filePath];

    //dataArr就是得到缓存数据数组

    写的不好   有错误的地方望大家多多指点

  • 相关阅读:
    使用Python创建自己的Instagram滤镜
    TensorFlow v2.0实现逻辑斯谛回归
    自动驾驶研究回顾:CVPR 2019摘要
    dp cf 20190613
    简单搜索 kuangbin C D
    树形dp compare E
    区间dp E
    Codeforces Round #564 (Div. 2)
    网络流 + 欧拉回路 = B
    网络流 A
  • 原文地址:https://www.cnblogs.com/Lovexiaohuzi/p/7797366.html
Copyright © 2020-2023  润新知