FGRoute alternatives and similar libraries
Based on the "Networking" category.
Alternatively, view FGRoute alternatives based on common mentions on social networks and blogs.
-
RealReachability
We need to observe the REAL reachability of network. That's what RealReachability do. -
Networking
DISCONTINUED. Easy HTTP Networking in Swift a NSURLSession wrapper with image caching support -
XMNetworking
A lightweight but powerful network library with simplified and expressive syntax based on AFNetworking. -
Digger
Digger is a lightweight download framework that requires only one line of code to complete the file download task -
SOAPEngine
This generic SOAP client allows you to access web services using a your iOS app, Mac OS X app and AppleTV app. -
TWRDownloadManager
A modern download manager based on NSURLSession to deal with asynchronous downloading, management and persistence of multiple files. -
ws โ๏ธ
โ ๏ธ Deprecated - (in favour of Networking) :cloud: Elegantly connect to a JSON api. (Alamofire + Promises + JSON Parsing) -
MultiPeer
๐ฑ๐ฒ A wrapper for the MultipeerConnectivity framework for automatic offline data transmission between devices -
AFNetworking+RetryPolicy
Nice category that adds the ability to set the retry interval, retry count and progressiveness.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of FGRoute or a related project?
README
FGRoute
FGRoute is written on C and Objective C (includes Swift support), it helps developers to get rid of dealing with WiFi interfaces.
Example
To run the example project, clone the repo, and run pod install
from the Example directory first.
Requirements
iOS 8 and later.
Installation
CocoaPods
FGRoute is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "FGRoute"
Then, run the following command:
pod install
Manually
Drag and Drop it into your project
Import "FGRoute.h"
You are ready to go!
Usage
With FGRoute you can easily get your ip address, Route, ssid etc.
First of all import header file at the top of your file for ObjC
#import "FGRoute.h"
for Swift
import FGRoute
Full method documentation for Swift
FGRoute.isWifiConnected() // Bolean value to check internet connection
FGRoute.getGatewayIP() //route ip address
FGRoute.getSSID() // Connected wifi name
FGRoute.getBSSID() // Connected wifi BSSID
FGRoute.getSSIDDATA() // Connected wifi SSIDDATA
FGRoute.getIPAddress() // Your local ip address in network
Full method documentation for ObjC
[FGRoute isWifiConnected]; // Bolean value to check internet connection
[FGRoute getGatewayIP]; //route ip address
[FGRoute getSSID]; // Connected wifi name
[FGRoute getBSSID]; // Connected wifi BSSID
[FGRoute getSSIDDATA]; // Connected wifi SSIDDATA
[FGRoute getIPAddress]; // Your local ip address in network
iOS 13 and later
You need to have "Access WiFi Information" entitlement enabled and you must meet at least one of criteria bellow
- App with permission to access location
- Currently enabled VPN app
- NEHotspotConfiguration
see example for more details
Author
Arthur Sahakyan, [email protected]
License
FGRoute is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the FGRoute README section above
are relevant to that project's source code only.