Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

portreathbeach

macrumors member
Original poster
Feb 19, 2011
79
4
Hi,

I am writing an iPhone app that is going to be using 15 or more dictionaries each containing about 15 arrays. These are basically tables of data. Instead of entering all of the data into the arrays from within xcode, I want to use Excel and export the data as .csv files.

My question is, where do I put the .csv file and how do I reference it in xcode.

If I save it, to say, the root of my hard drive, I can set the path to the file and open it from the iOS simulator, but what if I upload the app to the app store, the path is not going to be correct.

Where and how do I reference the file.

Thanks in advance

Craig
 
If the data is static the it should be in your applications resources (and you use the standard NSBundle methods). If it's not static then it should be in your applications sandboxed document area (and you'll have to find some way of getting it there so a copy will probably have to start in your applications resources) and you use the well documented method to get the documents folder (NSSearchPathForDirectoriesInDomains)

This is basically all covered in the ISO Application Programming Guide that all iOS developers should have read and understood all of before starting to think about any application.

Edit to add:this is 100% absolutely nothing to do with XCode which is just an IDE and everything to do with the API (Cocoa Touch) and the runtime (iOS).
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.