我正在嘗試將數據保存在iPhone 5.1模擬器上的文檔文件夾中。如何將文件保存在文檔文件夾中?
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [NSString stringWithFormat:@"%@/%@", documentsDirectory, @"myData.json"];
if ([[NSFileManager defaultManager] isWritableFileAtPath:filePath]) {
NSLog(@"Writable");
}else {
NSLog(@"Not Writable");
}
我總是「不可寫」。 有什麼想法?請幫幫我。
結束你有bu的json文件嗎? ndle或動態創建。 –
用於在路徑中寫入文件u需要將您的json文件創建爲nsdata * data或者需要nsstring並使用[data writeAtPath:filePath atomically:YES]; –