DelegateProxyDelegateProxy란 delegate method를 호출하는 객체와 구독자 사이에 delegate를 대신 처리하는 객체이다. 특정 delegate method가 호출되는 시점에 구독자로 next 이벤트를 전달한다.Delegate Pattern을 사용한 코드를 DelegateProxy를 구현해 Rxswift 형식으로 바꿔보자!// delegate pattern 코드func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) { // code}// rxswift 코드let locationManager = CLLocationM..