RxSwift Ch12. Beginning RxCocoa애플의 CocoaTouch를 처리하는 RxCocoa에 대해서 알아보자.근데, 작성하다가 파일 한번 날아감 ㅠㅠㅠㅠㅠㅠ 코드 분석주석으로 설명searchCityName.rx.text // textField와 연결 .filter { ($0 ?? "").count > 0 } // 입력값이 존재하면 넘어가게끔 .flatMapLatest { text in // 가장 마지막에 구독된 스트림의 값만으로 갱신 return ApiController.shared.currentWeather(for: text ?? "Error") .catchErrorJustReturn(ApiController.Weather.empty) // ..