
iOS/Combine
Combine (3) - Subject
안녕하세용가리 🐲 몇 주만의 글이지... 긁적.. 긴말 말고 휘뚜루마뚜루 바로 들어가보자고 ~ Subject 외부 호출자가 값을 게시할 수 있는 메서드를 표시하는 Publisher Subject | Apple Developer Documentation A publisher that exposes a method for outside callers to publish elements. developer.apple.com Publisher와 Subscriber의 특징을 모두 가지고 있다. stream에 send(_:) 메서드를 호출해서 값을 주입할 수 있는 Publisher이다. 그래서 기존에 Combine을 사용하지 않던 코드에 Combine 모델을 적용하고 싶을 때 사용하면 좋다고 한다 ~ 다시 정리해보..