你们中的任何人都知道如何将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
)
你们中的任何人都知道我做错了什么?
我真的很感谢你的帮助
答案 0 :(得分:1)
JSONObjectWithData
会返回NSArray
,NSDictionary
或nil。如果不是零,请用:
- (BOOL)writeToFile:(NSString *)path atomically:(BOOL)flag