こんにちは、ドキュメント フォルダーの plist に NSDictionary を書き込もうとしていますが、書き込めません。False を返す writeToFile:atomically: メソッドを使用しています。完全なコードは
-(void)writeData:(NSDictionary *)dicResponseData
{
// get paths from root directory
NSArray *paths = NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES);
// get documents path
NSString *documentsPath = [paths objectAtIndex:0];
// get the path to our Data/plist file
NSString *plistPath = [documentsPath stringByAppendingPathComponent:@"Contractors.plist"];
[dicResponseData writeToFile:plistPath atomically: TRUE];
}
ディクショナリには 25 のサブディクショナリが含まれています。