我想使用reactiveswift。
- podfile
pod 'ReactiveCocoa', '~> 6.0'
-
$ pod install
viewController.swift:
import UIKit
import ReactiveSwift
class ViewController: UIViewController {
@IBOutlet fileprivate weak var button: UIButton!
override func viewDidLoad() {
button.reactive.xxx { ... }
}
}
我只有这个错误,所以我可以在评论button.reactive.xxx { ... }
时运行。
坦克你。
完全如@nicolasmiari所建议的 - 反应性可可分为几个部分(无论如何是版本5.0)。
反应性Swift包含核心原始图(Signal
,SignalProducer
,Property
,Action
)和运算符的实现。值得注意的是,这是独立的平台。
反应性可可座建立在反应性迅速的顶部,并通过.reactive
属性添加了iOS/macOS的UIKit
和AppKit
特定扩展。