将plist文件写到docmentc目录下的方法

来源:互联网 发布:网络缩写英文字母 编辑:程序博客网 时间:2024/05/22 02:23

#define APP_CACHES_PATH             

[NSSearchPathForDirectoriesInDomains (NSCachesDirectory, NSUserDomainMask, YES) objectAtIndex:0]


- (void)writeDoubanAlbumDataToJSON{


    NSString *path = [[NSBundlemainBundle]pathForResource:@"DoubanAlbumData_Local"ofType:@"plist"];


    NSDictionary *dic = [NSDictionarydictionaryWithContentsOfFile:path];

    

    path = [APP_CACHES_PATHstringByAppendingPathComponent:@"JSON"];

    

   NSLog(@"%@",path);

    

   NSString *text = [dicJSONString];

    [textwriteToFile:path

          atomically:YES

             encoding:NSUTF8StringEncoding

               error:nil];

}

原创粉丝点击