I'm creating a mac desktop application using Xcode 4 and Cocos2d, as well as Interface Builder. I'm trying to take a user-selected file and turn it into a CCSprite.
My code for selecting the file is working great. It's happening in my AppDelegate.m class. Here it is:
- (IBAction)openExistingDocument:(id)sender {
NSOpenPanel* panel = [NSOpenPanel openPanel];
[panel setCanChooseDirectories:NO];
[panel setAllowsMultipleSelection:NO];
[panel setMessage:@"Please select a File or Folder containing your character's .png layers"];
[panel beginWithCompletionHandler:^(NSInteger result){
if (result == NSFileHandlingPanelOKButton) {
NSURL* theDoc = [[panel URLs] objectAtIndex:0];
NSString* filePath = [theDoc path];
NSLog(@"the path: %@", filePath);
NSLog(@"the url says:%@", theDoc);
}}];
}
The problem I'm having is getting the filePath from here, which is just an NSString, into my HelloWorldLayer.m class, so I can run:
CCSprite *userSprite = [CCSprite spriteWithFile:filePath];
I know the solution is probably super basic, but can someone explain to me the best way to do this?