在我的項目中,我將jsondata保存到名爲AllBooking.json的本地jsonfile中。如何在iOS中的URLByAppendingPathComponent中添加自定義路徑
代碼:
NSURL *fileURL =[[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"AllBooking.json"];
URLByAppendingPathComponent方法創建該文件的任何無關緊要的道路!
而且
[自applicationDocumentsDirectory] 回報
[[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory
inDomains:NSUserDomainMask] lastObject];
有什麼辦法,我可以給自定義的文件路徑?
同時添加的代碼[自applicationDocumentsDirectory] –
你被無關的路徑是什麼意思? –
@ Er.ShreyanshShah我已經添加了[self applicationDocumentsDirectory] – Bindi