2

JSONデータ呼び出しをファイルに保存する方法を知っている人はいますか?

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

私は試した:

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

しかし、ファイルが表示されません:

NSArray * directoryContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:ディレクトリ エラー:&error];

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

私が間違っていることを知っている人はいますか?

私は本当にあなたの助けに感謝します

4

1 に答える 1

1

JSONObjectWithDataNSArrayNSDictionaryまたは nilを返します。nil でない場合は、次のように記述します。

- (BOOL)writeToFile:(NSString *)path atomically:(BOOL)flag
于 2012-12-31T23:19:14.787 に答える