In NSDate+DateTools by Matthew York, there's a line that's crashing for me:
#ifndef DateToolsLocalizedStrings
#define DateToolsLocalizedStrings(key) \
NSLocalizedStringFromTableInBundle(key, @"DateTools", [NSBundle bundleWithPath:[[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"DateTools.bundle"]], nil)
#endif
I moved files into this new XCode project from another Xcode project. So I think it's looking in the mainBundle for something that doesn't exist? I'm not really sure what's going on. Thanks....
This is very unsafe coding. You need to check that each argument is actually returning something that is not nil. Even resourcePath has the possibility of returning nil, but in your case it is most likely that "DateTools.bundle" is either missing or is in the wrong place in the App bundle.
I really do not like concise code like this. It saves nothing useful, and makes debugging painful.