Vespucci 0.5.3

Vespucci 0.5.3

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Sep 2016

Maintained by Sash Zats, Lior Rozner, Nguyen Quoc Dat.



Vespucci 0.5.3

Usage

VSPNavigationManager *manager = [[VSPNavigationManager alloc] initWithURLScheme:@"my-app"];

// Register the route matching URL my-app://home/posts/123xyz
[manager registerNavigationForRoute:@"/home/posts/:post_id" handler:^VSPNavigationNode *(NSDictionary *parameters) {
    VSPNavigationNode *root = [VSPNavigationNode rootNodeForParameters:parameters nodeIds:RootNodeId, NewsFeedNodeId, PostNodeId, nil];
    root.leaf.viewController = [PostViewController postViewControllerWithPostId:parameters[@"post_id"]];
    return root;
}];

// Define presentation and dismissal rules
[self addRuleForHostNodeId:NewsFeedNodeId childNodeId:PostNodeId mountBlock:^RACSignal *(VSPNavigationNode *parent, VSPNavigationNode *child) {
    return [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
        [parent.viewController presentViewController:child.viewController animated:animated completion:^{
            [subscriber sendCompleted];
        }];
        return nil;
    }];
} unmounBlock:^RACSignal *(VSPNavigationNode *parent, VSPNavigationNode *child) {
    return [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
        [child.viewController dismissViewControllerAnimated:animated completion:^(BOOL finished){
            [subscriber sendCompleted];
        }]
        return nil;
    }];
}];

Please see the example project for details.

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

Vespucci is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "Vespucci"

Author

Sash Zats, [email protected]

License

Vespucci is available under the MIT license. See the LICENSE file for more info.