Note that application bundle files are read only.
Getting path for a file in the application bundle
//Get pointer to application bundle
NSBundle *applicationBundle = [NSBundle mainBundle];
//Get path to a resource file in the bundle
NSString *path = [applicationBundle pathForResource:@"myImageName"
ofType:@"png"]; //Returns nil if not found