作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有按钮的集合 View 单元格,并且我想通过该单元格的 View 模型, View Controller 的 View 模型以及集合 View Controller 本身(因为我需要提供一个 View Controller )来传递点击控制事件(button.rx.rap
)点击事件)。
如何以Rx方式实现(理想情况下不使用主题)?
最佳答案
我们的方法是在 View 模型中使用PublishSubject。
例如
class CellViewModel {
let optionButtons: [TripOptionButtonsCellView.TripOptionButtonType]
let optionButtonTapped = PublishSubject<TripOptionButtonsCellView.TripOptionButtonAction>()
init()
...
}
func switchButtonValueChanged( to isOn: Bool ) {
viewModel?.optionButtonTapped.onNext(.enableOrDisableNotifications(isEnabled: isOn))
}
}
关于mvvm - RxSwift : How to pass a control event through multiple view models,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42623766/
我是一名优秀的程序员,十分优秀!