I'm seeing this error on an iOS 4.3.5 handset where my app has been installed via an ad hoc deployment (downloaded over HTTP):
Dyld Error Message:
Symbol not found: _OBJC_CLASS_$_NSJSONSerialization
Expected in: /System/Library/Frameworks/Foundation.framework/Foundation
My code in the app doesn't call iOS 5 libraries unless a class has been shown to exist (i.e. if(NSClassFromString(@"NSJSONSerialization")!=nil) so the issue isn't that calls are being made to iOS 5 libraries on an iOS 4 device.
The app itself contains a static library which is my own code, and is where the NSJSONSerialization references exist.
The app works perfectly on the iOS 4.3 device if run directly from xcode (i.e. the iPhone attached to the development machine via USB cable). However, when run on the same device via the adhoc deployment, I see the crash.
The adhoc archive is built via Product->Archive in xcode 4, and then I use the 'Distribute' button to create the Ad-Hoc deployment .ipa file.
The app crashes almost instantly, leaving me to think that perhaps none of my code is being called at all, and that it's my Archive build settings that may be incorrect here?
Many thanks in advance for any time spent helping!