I have a problem accessing my files in my app.
I am currently using
//Directly from TileMap example from WWDC2010 NSString *tileDirectory = [[[NSBun
Since it is your files in your app bundle, I think you can use pathForResource:ofType: to get the full pathname of your file.
pathForResource:ofType:
Here is an example:
NSString* filePath = [[NSBundle mainBundle] pathForResource:@"your_file_name" ofType:@"the_file_extension"];