この例のような関数を作りたいと思います。RxSwift - 1つのObservable内の複数のObservable値
例
let num1 = Driver<Int>
let num2 = Driver<Int>
let result = Driver<String>
num1 = Observable.just(...).asDriver()
num2 = Observable.just(...).asDriver()
result = ??? // When both num1 and num2 are subscribed, this becomes a higher value among them as String.
// This type of code will be used
/*
if $0 >= $1 {
return "num1 = \($0)"
} else {
return "num2 = \($1)"
}
*/
どのようにそれを実装するには?
ありがとうございます。私はこれを探していた! – Byoth