保存字典是否有大小限制?NSDictionary writeToFile
我正在嘗試使用writeToFile編寫一個包含大約100個嵌套字典的相當大的字典:但它永遠不會寫入,並且始終爲false。
這是一個限制,還是我做的事情不正確,
我用的代碼如下。
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory , NSUserDomainMask, YES);
NSString *documentsDir = [paths objectAtIndex:0];
NSString *fullPath = [documentsDir stringByAppendingPathComponent:@"test.plist"];
[myDict writeToFile: fullPath atomically:YES];
你確定你沒有嵌入字典樹中的任何非可編碼對象。 Theres一組符合NSCoding的對象。在控制檯中進行檢查我有一種感覺,如果出現這種情況,它會將違規的對象細節留在那裏。 – 2010-08-11 15:48:00