Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Say for example In Xcode I make 3 folders in my supporting files older named "a" "b" and "c".

In each of these folders I have an xml file name "file.xml".

How can I use NSMainBundle to get paths to these 3 different xml files?

share|improve this question

1 Answer

up vote 1 down vote accepted

To get these files at runtime Xcode will copy them in the Copy Bundle Resource phase. This normally copies into the root of the bundle. To deal with directories see @CocoaFu's answer to this SO question.

Then in the code

NSBundle* bundle = [NSBundle mainBundle] will give you the main bundle

From this you look in directories using pathForResource:ofType:inDirectory: e.g.

NSString* path = [bundle pathForResource:@"file.xml" 
                                  ofType:nil 
                             inDirectory:@"a"];

The methods are given in NSBundle class reference also see the Bundle Programming guide

share|improve this answer
do I need to add a copy files phase for each folder? – dubbeat Aug 15 '11 at 11:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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