I have a problem accessing my files in my app.
I am currently using
//Directly from TileMap example from WWDC2010 NSString *tileDirectory = [[[NSBun
You need to use the URL for the link, such as this:
NSURL *path = [[NSBundle mainBundle] URLForResource:@"imagename" withExtension:@"jpg"];
It will give you a proper URL ref.