Hi,
I have always wanted this. To be notified about true connections.
After finding this repo, I tried to add it to one of my existing projects. The project has many many dependencies which in turn have their own dependencies and from there it goes a downward spiral ... anyway, somewhere along the way, one of these projects has Reachability as its dependency. Now, I can't remove the main dependency (not for the time being at least).
When I added RealReachability to my project, i have faced a conflict between RealReachability and Reachability on the NetworkStatus enum cases:
typedef NS_ENUM(NSInteger, NetworkStatus) {
// Apple NetworkStatus Compatible Names.
NotReachable = 0,
ReachableViaWiFi = 2,
ReachableViaWWAN = 1
};
Is it possible to change the enum cases for the unlucky guys like me who want to keep Reachability and RealReachability coexist in one project?
Hi,
I have always wanted this. To be notified about true connections.
After finding this repo, I tried to add it to one of my existing projects. The project has many many dependencies which in turn have their own dependencies and from there it goes a downward spiral ... anyway, somewhere along the way, one of these projects has Reachability as its dependency. Now, I can't remove the main dependency (not for the time being at least).
When I added RealReachability to my project, i have faced a conflict between RealReachability and Reachability on the
NetworkStatusenum cases:Is it possible to change the enum cases for the unlucky guys like me who want to keep Reachability and RealReachability coexist in one project?