RACSerialCommand 0.8.0

RACSerialCommand 0.8.0

测试已测试
语言语言 Obj-CObjective C
许可证 MIT
发布最新发布2016年6月

Hai Feng Kao 维护。



  • 作者:
  • Hai Feng Kao

示例

序列化 RACSignal 执行

    RACSerialCommand* command = [[RACSerialCommand alloc] initWithSignalBlock:^RACSignal*(id input){
        NSLog(@"%@", input);
        return [RACSignal empty];
    }];
    [command execute:@(1)];
    [command execute:@(2)];
    [command execute:@(3)];

    // will output 1 2 3

要求

安装

RACSerialCommand 通过 CocoaPods 提供。要安装它,只需将以下行添加到您的 Podfile

pod "RACSerialCommand"

作者

Hai Feng Kao, [email protected]

许可证

RACSerialCommand 在 MIT 许可证下可用。有关更多信息,请参阅 LICENSE 文件。