곰튀김 RxSwift 시즌 2 : https://youtu.be/iHKBNYMWd5I Github : https://github.com/iamchiwon/RxSwift_In_4_Hours 멀티쓰레드 이용한 데이터 다운로드 및 indicator 표시 비동기 처리 downloadJson 함수를 따로 빼서 그것만 멀티 쓰레드로 처리하도록. but 그러면 리턴값을 받을 수 가 없다? -> @escaping 클로저를 사용해서 결과 값을 전달 completion: @escaping (String?) -> Void … completion(json) Single argument function types require parentheses 그런데 만약 결과값이 옵셔널인 경우 escaping이 디폴트이기 때문에 생략 가..