ReactiveObjCBridge 连接 Swift 和 Objective-C API开源项目

我要开发同款
匿名用户2017年02月07日
90阅读
开发技术Swift
所属分类Objective-C、常用工具包、程序开发
授权协议MIT

作品详情

在苹果发布Swift语言之后,ReactiveCocoa使用Swift进行了重写。该框架创建了一个桥用来连接Swift和Objective-CAPI(ReactiveSwift和ReactiveObjC)。

示例代码:

extension ActionProtocol where Input: AnyObject, Output: AnyObject {    func toRACCommand() -> RACCommand<Input, Output>}extension ActionProtocol where Input: OptionalProtocol, Input.Wrapped: AnyObject, Output: AnyObject {    func toRACCommand() -> RACCommand<Input.Wrapped, Output>}extension ActionProtocol where Input: AnyObject, Output: OptionalProtocol, Output.Wrapped: AnyObject {    func toRACCommand() -> RACCommand<Input, Output.Wrapped>}extension ActionProtocol where Input: OptionalProtocol, Input.Wrapped: AnyObject, Output: OptionalProtocol, Output.Wrapped: AnyObject {    func toRACCommand() -> RACCommand<Input.Wrapped, Output.Wrapped>}
声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论