类型为"UIButton"的值没有成员"反应式"



我想使用reactiveswift。

  1. podfile

pod 'ReactiveCocoa', '~> 6.0'

  1. $ 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包含核心原始图(SignalSignalProducerPropertyAction)和运算符的实现。值得注意的是,这是独立的平台。

反应性可可座建立在反应性迅速的顶部,并通过.reactive属性添加了iOS/macOS的UIKitAppKit特定扩展。

相关内容

  • 没有找到相关文章

最新更新