作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 NVActivityIndicatorView
与 RxSwift
和 MVVM
一起使用。我正在扩展 NVActivityIndicatorView
,如下所示:
extension Reactive where Base: NVActivityIndicatorView {
/// Bindable sink for `startAnimating()`, `stopAnimating()` methods.
public var isAnimating: Binder<Bool> {
return Binder(self.base) { activityIndicator, active in
if active {
activityIndicator.startAnimating()
} else {
activityIndicator.stopAnimating()
}
}
}}
像这样绑定(bind)数据:
splashVM.loading.bind(to: NVActivityIndicatorView.rx.isAnimating).disposed(by: disposeBag)
但是我得到了这个错误:
Instance member 'isAnimating' cannot be used on type 'Reactive<NVActivityIndicatorView>'
如果我将 isAnimation
设置为静态,该错误就会消失,但会弹出另一个错误:
Instance member 'base' cannot be used on type 'Reactive<Base>'
到底是什么问题?我应该改变什么?
最佳答案
你绑定(bind)错了。您需要绑定(bind)到特定的事件指示器 View 而不是类:
let activityIndicatorView: NVActivityIndicatorView
splashVM.loading
.bind(to: activityIndicatorView.rx.isAnimating)
.disposed(by: disposeBag)
关于swift - 如何将 RxSwift 与 NVActivityIndicatorView 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55197144/
我是一名优秀的程序员,十分优秀!