EYNavigationController 0.0.1

EYNavigationController 0.0.1

测试已测试
Lang语言 Obj-CObjective C
许可证 MIT
发布上次发布2016年1月

Evgeniy Yurtaev 维护。



  • 作者
  • Evgeniy Yurtaev

支持信号的通知控制器 (UINavigationController)

安装

pod 'EYNavigationController', '~> 0.0.1'

使用方法

#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];
        }];
}
...