我寫下面的代碼將nsmutablearray寫入filemanager。無法將NSMutableArray寫入NSFileManager iOS Sdk
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
// the path to write file
NSString *arrayFile = [documentsDirectory stringByAppendingPathComponent:arrayName];
[imagesarray writeToFile:arrayFile atomically:YES];
但在NSFilemanager沒有創建文件ID,我沒有得到什麼可能是問題是。
任何人都可以告訴我原因。
是什麼arrayFile,你是如何創造的? – rishi 2012-04-24 11:30:57
沒有更多的代碼,錯誤信息,不,我們不能告訴你是什麼原因。 – rckoenes 2012-04-24 11:30:58
@RIP在那個數組中,我添加了包含UIImage和Int的對象,並從filemanager中檢索數組內容時我沒有收到任何錯誤,它只返回0個對象 – user1300511 2012-04-24 11:39:56