tonymillion/Reachability

ARC and GCD Compatible Reachability Class for iOS and MacOS. Drop in replacement for Apple Reachability

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 30 minutes ago
Added to GitGenius on September 9th, 2026
Created on November 12th, 2011
Open Issues & Pull Requests: 70 (+0)
GitHub issues: Enabled
Number of forks: 1,248
Total Stargazers: 6,949 (+0)
Total Subscribers: 259 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 12.7 hours
Mean response time: 176.7 days
90th percentile: 352.9 days
Tracked items: 2

Most active contributors

Sign in to see contributor activity.

Related repositories by overlapping contributors

No overlapping-contributor repos identified yet.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 2
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 413 days
Stale 30+ days: 2
Stale 90+ days: 1

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

No label distribution available yet.

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Reachability is a network connectivity detection library for iOS and macOS that replaces Apple's standard Reachability class.

The tool solves the problem of detecting when network interfaces become available or unavailable. It modernizes Apple's original implementation by adding ARC compatibility and using Grand Central Dispatch for notifications instead of older callback mechanisms. Developers can choose between two notification approaches: NSNotification callbacks delivered on the main thread, or block-based callbacks executed on background threads. The library also allows configuration of whether WWAN connections (3G, EDGE, CDMA) should be treated as reachable, which is useful for applications like video streaming that need to enforce data-conscious behavior.

Adoption requires linking the SystemConfiguration framework and adding the header and implementation files to your project. The tool suits developers maintaining Objective-C codebases or mixed Objective-C and Swift projects who need straightforward network reachability detection. A significant caveat exists: the README warns that apps using Reachability in a framework have faced App Store rejection, with renaming the class noted as the only known workaround.

The project maintains compatibility across multiple iOS versions, with specific tags designated for older iOS releases that require different memory management patterns. The codebase remains focused on its core purpose without feature expansion beyond the core reachability detection and notification mechanisms.