EYNavigationController 0.0.1

EYNavigationController 0.0.1

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

Maintained by Evgeniy Yurtaev.



  • By
  • Evgeniy Yurtaev

UINavigationController with support signals.

Installation

pod 'EYNavigationController', '~> 0.0.1'

Usage

#import <EYNavigationController/EYNavigationController.h>
...
- (RACSignal *)showAnimalsOfUser:(User *)user
{
    return [[self.dataProvider getAnimalsOfUser:user]
        flattenMap:^RACStream *(NSArray<Animal *> *animals) {
            AnimalsViewController *viewController = [[AnimalsViewController alloc] initWithAnimals:animals];
            EYNavigationController *navigationController = (EYNavigationController *)self.navigationController;

            return [navigationController signalForPushViewController:viewController animated:YES];
        }];
}
...