{"id":1648,"url":"https://github.com/ezefranca/EFInternetIndicator","last_synced_at":"2025-08-02T04:32:06.885Z","repository":{"id":56909363,"uuid":"82712925","full_name":"ezefranca/EFInternetIndicator","owner":"ezefranca","description":"❌📱 A little swift Internet error status indicator using ReachabilitySwift","archived":false,"fork":false,"pushed_at":"2019-06-04T08:22:44.000Z","size":263,"stargazers_count":129,"open_issues_count":9,"forks_count":17,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-06-16T08:53:46.447Z","etag":null,"topics":["internet","reachability","status","swift-3"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ezefranca.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-02-21T18:25:31.000Z","updated_at":"2024-12-26T02:54:47.000Z","dependencies_parsed_at":"2022-08-21T04:20:36.004Z","dependency_job_id":null,"html_url":"https://github.com/ezefranca/EFInternetIndicator","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/ezefranca/EFInternetIndicator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezefranca%2FEFInternetIndicator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezefranca%2FEFInternetIndicator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezefranca%2FEFInternetIndicator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezefranca%2FEFInternetIndicator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ezefranca","download_url":"https://codeload.github.com/ezefranca/EFInternetIndicator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezefranca%2FEFInternetIndicator/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268334615,"owners_count":24233793,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-02T02:00:12.353Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["internet","reachability","status","swift-3"],"created_at":"2024-01-05T20:15:52.275Z","updated_at":"2025-08-02T04:32:06.537Z","avatar_url":"https://github.com/ezefranca.png","language":"Swift","funding_links":[],"categories":["Networking"],"sub_categories":["Video","Other free courses"],"readme":"# EFInternetIndicator\n\n[![CI Status](http://img.shields.io/travis/ezefranca/EFInternetIndicator.svg?style=flat)](https://travis-ci.org/ezefranca/EFInternetIndicator)\n[![Version](https://img.shields.io/cocoapods/v/EFInternetIndicator.svg?style=flat)](http://cocoapods.org/pods/EFInternetIndicator)\n[![License](https://img.shields.io/cocoapods/l/EFInternetIndicator.svg?style=flat)](http://cocoapods.org/pods/EFInternetIndicator)\n[![Platform](https://img.shields.io/cocoapods/p/EFInternetIndicator.svg?style=flat)](http://cocoapods.org/pods/EFInternetIndicator)\n\n![](https://media.giphy.com/media/3Pumvj8kXlsze/giphy.gif)![](https://media.giphy.com/media/hbZFtkGO3oXTi/giphy.gif)![](https://media.giphy.com/media/bqSwgtKgJD1uw/giphy.gif)\n\n## Requirements\n\n- Xcode 8.0+\n- iOS 8.3+\n\n**WARNING** : It's not work on simulator. [#1](https://github.com/ezefranca/EFInternetIndicator/issues/1)\n\n## Installation\n\n#### CocoaPods\nYou can use [CocoaPods](http://cocoapods.org/) to install `EFInternetIndicator` by adding it to your `Podfile`:\n\n```ruby\nuse_frameworks!\npod 'EFInternetIndicator'\n```\n\n## Example\n\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n\n## Usage example\n\nTo start monitoring internet status in a single UIViewController you just need add the ```InternetStatusIndicable``` protocol and start monitoring with ```startMonitoringInternet()``` \n\n```swift\n\nimport UIKit\nimport EFInternetIndicator\n\nclass ViewController: UIViewController, InternetStatusIndicable {\n    \n    var internetConnectionIndicator:InternetViewIndicator?\n    \n    override func viewDidLoad() {\n        super.viewDidLoad()\n        self.startMonitoringInternet()\n    }\n}\n\n```\n\nAlso, you can customize indicator using custom parameters: \n\n```swift\nfunc startMonitoringInternet(backgroundColor:UIColor, style: MessageView.Layout, textColor:UIColor, message:String, remoteHostName: String)\n```\n\nIf you want all yours UIViewControllers monitoring internet you can create a abstract class like:\n\n```swift\n\nimport UIKit\nimport EFInternetIndicator\n\nclass EFViewController: UIViewController, InternetStatusIndicable {\n    \n    var internetConnectionIndicator:InternetViewIndicator?\n    \n    override func viewDidLoad() {\n        super.viewDidLoad()\n        self.startMonitoringInternet()\n    }\n}\n\nclass SecondViewController: EFViewController {\n    \n    override func viewDidLoad() {\n        super.viewDidLoad()\n    }   \n}\n\n// Override properties when you want \nclass MagicViewController: EFViewController {\n    \n    override func viewDidLoad() {\n        super.viewDidLoad()\n        self.startMonitoringInternet(backgroundColor:UIColor.blue, style: .StatusLine, textColor:UIColor.white, message:\"No magic on internet here :(\", remoteHostName: \"magic.com\")\n    }   \n}\n\n\n```\n\n## Author\n\nezefranca, ezequiel.ifsp@gmail.com\n\n## Acknowledgments\n\n- [@SwiftKickMobile](https://github.com/SwiftKickMobile) for SwiftMessages;\n- [@ashleymills](https://github.com/ashleymills) for Reachability.swift;\n\n\n## License\n\nEFInternetIndicator is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fezefranca%2FEFInternetIndicator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fezefranca%2FEFInternetIndicator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fezefranca%2FEFInternetIndicator/lists"}