CocoaPods trunk is moving to be read-only. Read more on the blog, there are 19 months to go.
TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by David Lawson.
Depends on: | |
Masonry | >= 0 |
JRSwizzle | >= 0 |
iOS library for creating an information view positioned below the status bar, similar to the inbuilt iOS in-call status bar.
Compatible with iOS 6/7, iPhone & iPad.
InformationView
provided (can be subclassed)Add pod 'Informative'
to your Podfile.
Informative *informative = [Informative singleton];
informative.tapInformationView = ^{
[[[UIAlertView alloc] initWithTitle:@"Tapped Information View" message:@"Awesome!" delegate:nil cancelButtonTitle:@"Close" otherButtonTitles:nil] show];
};
informative.createInformationView = ^UIView*
{
InformationView *notReachableView = [[InformationView alloc] init];
notReachableView.text = @"No Internet Connection";
return notReachableView;
};
// Inside reachability handler
[Informative singleton].showInformation = !reachable;
This library is available under the MIT license.