ios如何将json数据调用保存为文件

时间:2012-12-31 22:14:54

标签: iphone ios xcode json

你们中的任何人都知道如何将json数据调用保存到文件中?

self.results=[NSJSONSerialization
                           JSONObjectWithData:jsonData
                           options:0
                           error:&error];

我试过了:

 [_results writeToFile:@"jsonFile" atomically:YES];

但是我没有看到文件:

NSArray * directoryContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:directory error:& error];

file path (
    "Default-568h@2x.png",
    "Default.png",
    "Default@2x.png",
    "en.lproj",
    "Info.plist",
    "JSON Generator",
    PkgInfo
)

你们中的任何人都知道我做错了什么?

我真的很感谢你的帮助

1 个答案:

答案 0 :(得分:1)

JSONObjectWithData会返回NSArrayNSDictionary或nil。如果不是零,请用:

写下来
- (BOOL)writeToFile:(NSString *)path atomically:(BOOL)flag