CocoaPods trunk is moving to be read-only. Read more on the blog, there are 13 months to go.
| TestsTested | ✓ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Mar 2016 |
Maintained by Matthew Dobson.
| Depends on: | |
| ReactiveCocoa | = 2.4.7 |
| SocketRocket | = 0.4 |
To run the example project, clone the repo, and run pod install from the Example directory first.
//How to fully crawl your Zetta API
ZIKSession *session = [ZIKSession sharedSession];
RACSignal *root = [session root:[NSURL URLWithString:@"http://zetta-cloud-2.herokuapp.com/"]];
RACSignal *servers = [session servers:root];
RACSignal *devices = [session devices:servers];
[root subscribeNext:^(ZIKRoot *root) {
NSLog(@"%@", root);
}];
[servers subscribeNext:^(ZIKServer *server) {
NSLog(@"%@", server);
}];
[devices subscribeNext:^(ZIKDevice *device) {
NSLog(@"%@", device);
}];
This library requires the following components
'ReactiveCocoa'@'2.4.7''SocketRocket'@'0.3.1-beta2'ZettaKit is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "ZettaKit"Matthew Dobson, [email protected]
ZettaKit is available under the MIT license. See the LICENSE file for more info.