IMNetworkReachability is a reachability framework. It is designed to help you interface with network activity events. It allows you to monitor network state synchronously and asynchronously.
- iOS 8.0+ / macOS 10.9+ / tvOS 9.0+
- Xcode 9.0
- Swift 4.0
IMNetworkReachability supports multiple methods for installing the library in a project.
CocoaPods is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries like IMNetworkReachability in your projects. See the "Getting Started" guide for more information. You can install it with the following command:
$ gem install cocoapodsTo integrate IMNetworkReachability into your Xcode project using CocoaPods, specify it in your Podfile:
source 'https://github.com/CocoaPods/Specs.git'
target 'iOS' do
platform :ios, '8.0'
use_frameworks!
pod 'IMNetworkReachability', '~> 0.2.0'
end
target 'macOS' do
platform :osx, '10.9'
use_frameworks!
pod 'IMNetworkReachability', '~> 0.2.0'
end
target 'tvOS' do
platform :tvos, '9.0'
use_frameworks!
pod 'IMNetworkReachability', '~> 0.2.0'
endThen, run the following command:
$ pod installCarthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthageTo integrate IMNetworkReachability into your Xcode project using Carthage, specify it in your Cartfile:
github "vanyaland/IMNetworkReachability" ~> 0.2.0
Run carthage to build the framework and drag the built IMNetworkReachability.framework into your Xcode project.
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler. It is in early development, but IMNetworkReachability does support its use on supported platforms.
Once you have your Swift package set up, adding IMNetworkReachability as a dependency is as easy as adding it to the dependencies value of your Package.swift.
dependencies: [
.package(url: "https://github.com/vanyaland/IMNetworkReachability.git", from: "0.2.0"),
]If you prefer not to use any of the aforementioned dependency managers, you can integrate IMNetworkReachability into your project manually.
-
Open up Terminal,
cdinto your top-level project directory, and run the following command "if" your project is not initialized as a git repository:$ git init
-
Add IMNetworkReachability as a git submodule by running the following command:
$ git submodule add https://github.com/vanyaland/IMNetworkReachability.git
-
Open the new
IMNetworkReachabilityfolder, and drag theIMNetworkReachability.xcodeprojinto the Project Navigator of your application's Xcode project.It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter.
-
Select the
IMNetworkReachability.xcodeprojin the Project Navigator and verify the deployment target matches that of your application target. -
Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar.
-
In the tab bar at the top of that window, open the "General" panel.
-
Click on the
+button under the "Embedded Binaries" section. -
You will see two different
IMNetworkReachability.xcodeprojfolders each with two different versions of theIMNetworkReachability.frameworknested inside aProductsfolder.It does not matter which
Productsfolder you choose from, but it does matter whether you choose the top or bottomIMNetworkReachability.framework. -
Select the top
IMNetworkReachability.frameworkfor iOS and the bottom one for OS X.You can verify which one you selected by inspecting the build log for your project. The build target for
IMNetworkReachabilitywill be listed as eitherIMNetworkReachability_iOS,IMNetworkReachability_macOSorIMNetworkReachability_tvOS. -
And that's it!
The
IMNetworkReachability.frameworkis automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device.
let reachability = IMNetworkReachability("www.google.com")
switch reachability.isReachable() {
case .reachable:
print("Reachable")
case .offline:
print("Offline")
case .error(let error):
print("Failed to check for a network reachability, error: \(error)")
}// Declare this property where it won't go out of scope relative to your listener
let reachability = IMNetworkReachability("www.google.com")
reachability.startListening { (result) in
// this is called on a main thread
switch result {
case .reachable:
print("Reachable")
case .offline:
print("Offline")
case .error(let error):
print("Failed to check for a network reachability, error: \(error)")
}
}and for stopping notifications
reachability.stopListening()Also, don't forget to enable network access on macOS.
I'm Ivan Magda. Email: [email protected]. Twitter: @magda_ivan.
This project is open-sourced software licensed under the MIT License.
See the LICENSE file for more information.