- 授权协议: MIT
- 开发语言: Objective-C Swift
- 操作系统: iOS
- 软件首页: https://github.com/ReactiveCocoa/ReactiveObjCBridge
- 软件文档: https://github.com/ReactiveCocoa/ReactiveObjCBridge
软件介绍
在苹果发布 Swift 语言之后,ReactiveCocoa 使用 Swift 进行了重写。该框架创建了一个桥用来连接 Swift 和 Objective-C API (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>
}
深入浅出MFC (第二版)
侯俊杰 / 华中科技大学出版社 / 2001-1 / 80.00元
《深入浅出MFC》分为四大篇。第一篇提出学习MFC程序设计之前的必要基础,包括Widnows程序的基本观念以及C++的高阶议题。“学前基础”是相当主观的认定,但作者是甚于自己的学习经验以及教学经验,其挑选应该颇具说服力。第二篇介绍Visual C++整合环境开发工具。此篇只是提纲挈领,并不企图取代Visual C++使用手册;然而对于软件使用的老手,此篇或已足以帮助掌握Visual C++整合环境......一起来看看 《深入浅出MFC (第二版)》 这本书的介绍吧!
