I was quite dumb. Had I but read the documentation on Copy Files ... Indeed the directory you enter there is the one you can access in the bundle. What I didn't see is that the files must be entered into the resources first. Just what I was looking for.
I was misled by old blogs from the past, apparently before this was fixed. I should have gone to the doc first Thanks Pierre 2009/10/29 Ron Fleckner <[email protected]> > When you add your folder of jpgs to your project, be sure to set "Create > folder references for any added folders" to true. Also don't forget to > check the checkbox with "Copy items into destination group's folder, if > needed." Then you can do, for example: > > NSString *bellSoundPath = [[NSBundle mainBundle] pathForResource:@"Cow > Bell" ofType:@"aiff" inDirectory:@"Sounds"]; > > and it Just Works™. > > Ron > > > > On 29/10/2009, at 4:01 PM, Pierre Berloquin wrote: > > I do use pathForResource:ofType:inDirectory: with nil for Directory and >> jpg >> for Type >> It helps separate jpg's from other pictures >> >> But suppose I want to have my pictures in a directory called Pic, how do I >> go about it? >> Thanks Dave >> Pierre >> >> 2009/10/28 Dave Carrigan <[email protected]> >> >> >>> On Oct 28, 2009, at 10:46 AM, Pierre Berloquin wrote: >>> >>> My app uses a hundred pictures. >>> >>>> How can I group them somewhere in the bundle so that my app loads them >>>> without confusing them with button images and icons . >>>> >>>> >>> Have you tried NSBundle's -pathForResource:ofType:inDirectory: >>> >>> To install them, create a new copy files build phase that copies them to >>> the subdirectory of your choosing. >>> >>> -- >>> Dave Carrigan >>> [email protected] >>> Seattle, WA, USA >>> >>> >>> >> >> -- >> Blogs : http://bibliobs.nouvelobs.com/blog/jeux-litteraires >> http://pierre-berloquin.blogspot.com/ >> >> Développement durable des neurones par le jeu de réflexion >> www.crealude.net >> >> Sustainable development of neurones through mind games >> www.crealude.net/us >> >> Que fait-on pour les mal-codants ? >> _______________________________________________ >> >> Cocoa-dev mailing list ([email protected]) >> >> Please do not post admin requests or moderator comments to the list. >> Contact the moderators at cocoa-dev-admins(at)lists.apple.com >> >> Help/Unsubscribe/Update your Subscription: >> >> http://lists.apple.com/mailman/options/cocoa-dev/ronfleckner%40ozemail.com.au >> >> This email sent to [email protected] >> > > -- Blogs : http://bibliobs.nouvelobs.com/blog/jeux-litteraires http://pierre-berloquin.blogspot.com/ Développement durable des neurones par le jeu de réflexion www.crealude.net Sustainable development of neurones through mind games www.crealude.net/us Que fait-on pour les mal-codants ? _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
