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.