Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
RxSwift でエラーが発生した場合は、一連のアイテムを発行する必要があります。JAVA では「onErrorResumeNext」演算子で実行できます。しかし、Swift で同じ演算子またはその代替を見つけることができません。
使用できます
ObservableType.catchError(handler: (ErrorType) throws -> Observable<E>) -> Observable<E>
ドキュメントはここにあります。