Using Apple\'s Reachability code in iOS5 I get a bunch of compilation errors as shown below. Any ideas on what is happening here? I\'m using ARC so I have edited the standard co
You need to add the systemConfiguration.framework to make Reachability work.
I know this thread is old, but in case anyone is interested you can solve this by disabling ARC for Reachability.m. Look at this post.
You don't really need an ARC version of Reachability, just simply disable ARC for reachability file(s)
Disable ARC on MULTIPLE files:
You also have a missing framework. Add SystemConfiguration framework.
I rearranged them for IOS 5 and arc they are working tested
Please DON'T FORGET TO ADD SystemConfiguration.framework on your project
I wrote a clean 'drop in' version of reachability for ARC and iOS5 - you can get it here: https://github.com/tonymillion/Reachability
I just found this that might help. Thank the author for this (this is not mine)!
https://gist.github.com/1182373