欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

iOS 将json文件转为plist文件

程序员文章站 2022-04-12 22:02:20
ios 将json文件转为plist文件。 nsstring *path = [[nsbundle mainbundle] pathforresource:@"address.jso...

ios 将json文件转为plist文件。

 nsstring *path = [[nsbundle mainbundle] pathforresource:@"address.json" oftype:nil];
    nslog(@"path = %@",path);

    nsarray *array = [nsjsonserialization jsonobjectwithdata:[nsdata datawithcontentsoffile:path] options:nsjsonreadingmutableleaves error:nil];

    nsstring *newpath = [nsstring stringwithformat:@"%@%@",[[nsbundle mainbundle] bundlepath],@"/address.plist" ];
    nslog(@"newpath = %@", newpath);

    [array writetofile:newpath atomically:yes];