I'm making an app that needs to create a directory to download some files. When I call
[[NSFileManager defaultManager] createDirectoryAtPath:
[[self.searchURL theDownloadLocation] stringByStandardizingPath]
withIntermediateDirectories:YES attributes:nil error:nil];
within
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
it works fine. I have a button that is supposed to commence the download. I've laid it out in the xib file and it works to do anything else, so I know the button works. Again, the directory is created with no issue if I call the NSFileManager method within applicationDidFinishLaunching, but not within the other method called when I press the button. It crashes with an (lldb) message.
The parameters being passed are exactly the same, I've even NSLogged the [[self.searchURL theDownloadLocation] stringByStandardizingPath] in the button method, and it's definitely an NSString, so it logs when I press the button. What am I missing?
I sometimes get an error message:
2013-02-12 19:33:04.404 dArt[2351:303] -[NSISRestrictedToNonNegativeVariableToBeMinimized
stringByStandardizingPath]: unrecognized selector sent to instance 0x100528ba0
2013-02-12 19:33:04.405 dArt[2351:303] -[NSISRestrictedToNonNegativeVariableToBeMinimized
stringByStandardizingPath]: unrecognized selector sent to instance 0x100528ba0
2013-02-12 19:33:04.408 dArt[2351:303] (
0 CoreFoundation 0x00007fff862c40a6 __exceptionPreprocess + 198
1 libobjc.A.dylib 0x00007fff8d4e53f0 objc_exception_throw + 43
2 CoreFoundation 0x00007fff8635a6ea -[NSObject(NSObject) doesNotRecognizeSelector:] + 186
3 CoreFoundation 0x00007fff862b25ce ___forwarding___ + 414
4 CoreFoundation 0x00007fff862b23b8 _CF_forwarding_prep_0 + 232
5 dArt 0x000000010000248d -[AppDelegate searchTheArt:] + 141
6 AppKit 0x00007fff8a91ea59 -[NSApplication sendAction:to:from:] + 342
7 AppKit 0x00007fff8a91e8b7 -[NSControl sendAction:to:] + 85
8 AppKit 0x00007fff8a91e7eb -[NSCell _sendActionFrom:] + 138
9 AppKit 0x00007fff8a91ccd3 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1855
10 AppKit 0x00007fff8a91c521 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 504
11 AppKit 0x00007fff8a91bc9c -[NSControl mouseDown:] + 820
12 AppKit 0x00007fff8a91360e -[NSWindow sendEvent:] + 6853
13 AppKit 0x00007fff8a90f744 -[NSApplication sendEvent:] + 5761
14 AppKit 0x00007fff8a8252fa -[NSApplication run] + 636
15 AppKit 0x00007fff8a7c9cb6 NSApplicationMain + 869
16 dArt 0x00000001000016b2 main + 34
17 libdyld.dylib 0x00007fff8b36b7e1 start + 0
)
searchURLthat accepts a message like you've shown? Most important of all, what's your error message? It'd really be illuminating if you'd provide it. – trudyscousin Feb 12 at 18:06lldb, like I said, it just crashes with that message. – phySi0 Feb 12 at 19:32(lldb). – phySi0 Feb 12 at 19:40