zoukankan      html  css  js  c++  java
  • 接口请求数据 缓存本地 .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就是得到缓存数据数组

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

  • 相关阅读:
    bzoj 1210 [HNOI2004] 邮递员 插头dp
    与非 乱搞233
    USACO JAN14 奶牛冰壶运动 凸包+判定
    bzoj 2829 计算几何
    R
    bzoj 1592 dp
    [Usaco2007 Open]Fliptile 翻格子游戏 状压dp
    拯救莫莉斯 状压dp
    大暑假集训 第一阶段总结 233
    hdu 1693 Eat the Trees 插头dp
  • 原文地址:https://www.cnblogs.com/Lovexiaohuzi/p/7797366.html
Copyright © 2011-2022 走看看