CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.

NoNetworkViewController 1.0.0

NoNetworkViewController 1.0.0

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Jan 2015

Maintained by William Falcon.



View controller that takes over screen when there is no internet connection. Critical for networked apps.

Example

How to Use

  1. Import header file
#import "NoNetworkManager.h"
  1. Start manager from didFinishLaunchingWithOptions in your AppDelegate file
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    // Enable takeover View Controller
    // Will show whenever the network goes out, and dissappear when network comes back in
    [NoNetworkManager enableLackOfNetworkTakeover];

    return YES;
}

Dependencies