Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to load some .applescript files in my project.

Copied them into the "Supporting Files" directory like this:

enter image description here

and tried to access them:

NSBundle *bundle = [NSBundle mainBundle];
NSLog(@"Resource path for test.applescript: %@", [bundle pathForResource:@"test" ofType:@"applescript"]);

pathForResource always returns null.

Both files are correctly imported in xcode. The target membership is my app. Solutions from similar questions didn't really help

What am i doing wrong?

share|improve this question

2 Answers

up vote 21 down vote accepted

In the Xcode target "Build Phases" add the file under "Copy Bundle Resources"".

share|improve this answer
simple and exactly what i was missing. thanks! – Dabido Feb 17 '12 at 16:51
Drag/drop is still broken in Xcode 4.5 :( - e.g. dragging Apple's own OpenGL shaders from Finder to a project failed to add them to the Copy Bundle Resources phase (why? surely this isn't difficult for Apple to implement!). Sigh. – Adam Dec 29 '12 at 18:56

Does your image assume that that file in some folder?

Try pathForResource:ofType:inDirectory: method in this case:

NSLog(@"Resource path for test.applescript: %@", [bundle pathForResource:@"test" ofType:@"applescript" inDirectory:@"folder/Supporting Files");
share|improve this answer

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.