KSReachability
KSReachability copied to clipboard
No instructions for building and build fails on iOS.
Trying to do a build on 10.8.3 (Xcode 4.6.2) for iOS and the error of 'KSReachability/KSReachability.h' file not found is the first thing that happens.
How are you able to build your own project with this error?
Which target fails to build? I'm able to build all targets in Xcode 4.6.3 on OSX 10.8.4.
I was building the iOS version.
Any idea why Xcode can't find files within its own project?
I got this problem too. You just need to include KSReachability.h
and KSReachability.m
to the project by yourself. It is somehow not included in the project. You also have to delete libKSReachability.a
and libKSReachabilityMac.a
from Frameworks folder in the left nav pane as I see no target in the project to build those files. And change your import to...
//#import <KSReachability/KSReachability.h>
#import "KSReachability.h"
Then it should work.