For a project I have to use AFNetworking. Got fresh copy from github and the iOS example project seems to be working.

However - when I copy over the "AFNetworking" folder to a new Xcode project and try to make a http call, it crashes in the AFHTTPClient's initializer

So in [AFHTTPClient initWithBaseURL:] there's this code:

#ifdef _SYSTEMCONFIGURATION_H
    [self startMonitoringNetworkReachability];
#endif

and it looks really stupid but

1) WHEN I don't link SystemConfiguration - the project doesn't compile

(Undefined symbols for architecture i386: "_SCNetworkReachabilityCreateWithName", referenced from: -[AFHTTPClient startMonitoringNetworkReachability] in AFHTTPClient.o)

2) WHEN I do link SystemConfiguration - the project crashes at runtime inside startMonitoringNetworkReachability with EXC_BAD_ACCESS:

SCNetworkReachabilitySetCallback(self.networkReachability, AFReachabilityCallback, &context);

Did anybody have this problem? From the way they praise their lib on github I thought it'd be more polished.

link|improve this question

74% accept rate
still not working for me, anyone ? – Ican Zilb Mar 2 at 13:44
do you have any solutions? I have an app that has 2 targets, it works in one target but doesn't work in another target. It's so weird. – nonamelive Apr 1 at 6:54
it's really weird indeed, still no solution for that – Ican Zilb Apr 11 at 13:20
Is your baseURL nil? It will crash if it is nil. – nonamelive Apr 11 at 16:18
feedback

2 Answers

As per the documentation:

This method requires the SystemConfiguration framework. Add it in the active target’s “Link Binary With Library” build phase, and add #import to the header prefix of the project (Prefix.pch).

You included the framework, but did you add #import <SystemConfiguration/SystemConfiguration.h> somewhere in the project?

link|improve this answer
the import to SystemConfiguration is in my .pch, but it still crashes the same way ... – Ican Zilb Feb 21 at 9:28
yeah looks like the only way for me was to comment [self startMonitoringNetworkReachability] – Ican Zilb Feb 26 at 11:22
Same problem here. Could solve it the same way by commenting [self startMonitoringNetworkReachability] – Klaas Mar 9 at 1:24
feedback

It will crash if your baseURL is nil.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.