I developed an ios application that has:
NSError *error;
instead:
NSError *error = nil;
It worked great when I debugged the simulator and debugged it when connected. The moment I archived it and sent it to TestFlight for deployment for testing, I started getting errors An unknown signal in the crash log.
Why is this happening?
source
share