개요


Untitled

코드 예시


ChatVC 가 MessageInputView 를 소유하고 있는 상황

extension Reactive where Base: MessageInputView {
  var sendButtonTap: ControlEvent<String> {
		let source = base.sendButton.rx.tap.withLatestFrom(...)
		return ControlEvent(events: source)
	}
}

자료


GitHub - ReactorKit/ReactorKit: A library for reactive and unidirectional Swift applications