vote up 0 vote down star

In my "Groups & Files" I have created something like that:

images > gui images > foo images > foo > bar

now I want to iterate over all images that are placed in images > foo > bar. Is that possible? I am afraid it's not, because the system did never care much about "folders" when loading a file.

flag

58% accept rate

1 Answer

vote up 1 vote down

If your images are in a sub-folder of your .app bundle, you can create an nsbundle for that folder and call pathsForResourcesOfType to get an nsareay of the paths.

link|flag
How would I create that NSBundle? – Thanks May 5 at 16:29
[NSBundle mainBundle] – Lounges May 5 at 17:25
[NSBundle bundleWithPath: [[NSBundle mainBundle]pathForResource:@"images" ofType:@""] – Mark Bessey May 5 at 19:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.