Reputation: 5872
I posted recently about the best way to implement RKReachabilityObserver (part of the RestKit project) in my iOS project.
mja kindly informed me that there was a singleton available which I implemented at various points in my application. I set the kBaseUrl to an IP address to avoid DNS issues and tested with the following results:
Is there anything I can do to improve the reliability of the RKReachabilityObserver from my end, perhaps via an alternative implementation?
Upvotes: 0
Views: 703
Reputation: 5066
You can always try to use the Reachability
example by Apple. The class provides both getter and notification mechanism to determine and observe the changes in device's reachability status.
As for the RKReachabilityObserver, i think there is still work underway to enhance the operation. Can you indicate which iOS version do you run on the device?
Upvotes: 1